Fixed Linux compilation.
This commit is contained in:
parent
06c2669cf6
commit
7d13a2a77a
@ -2272,7 +2272,7 @@ void cProtocol172::HandleVanillaPluginMessage(cByteBuffer & a_ByteBuffer, const
|
|||||||
if (BytesRead < static_cast<size_t>(a_PayloadLength))
|
if (BytesRead < static_cast<size_t>(a_PayloadLength))
|
||||||
{
|
{
|
||||||
LOGD("Protocol 1.7: Skipping garbage data at the end of a vanilla MC|AdvCdm packet, %u bytes",
|
LOGD("Protocol 1.7: Skipping garbage data at the end of a vanilla MC|AdvCdm packet, %u bytes",
|
||||||
a_PayloadLength - BytesRead
|
static_cast<unsigned>(a_PayloadLength - BytesRead)
|
||||||
);
|
);
|
||||||
a_ByteBuffer.SkipRead(a_PayloadLength - BytesRead);
|
a_ByteBuffer.SkipRead(a_PayloadLength - BytesRead);
|
||||||
}
|
}
|
||||||
|
@ -2336,7 +2336,7 @@ void cProtocol180::HandlePacketPluginMessage(cByteBuffer & a_ByteBuffer)
|
|||||||
if (a_ByteBuffer.GetReadableSpace() > 1)
|
if (a_ByteBuffer.GetReadableSpace() > 1)
|
||||||
{
|
{
|
||||||
LOGD("Protocol 1.8: Skipping garbage data at the end of a vanilla PluginMessage packet, %u bytes",
|
LOGD("Protocol 1.8: Skipping garbage data at the end of a vanilla PluginMessage packet, %u bytes",
|
||||||
a_ByteBuffer.GetReadableSpace() - 1
|
static_cast<unsigned>(a_ByteBuffer.GetReadableSpace() - 1)
|
||||||
);
|
);
|
||||||
a_ByteBuffer.SkipRead(a_ByteBuffer.GetReadableSpace() - 1);
|
a_ByteBuffer.SkipRead(a_ByteBuffer.GetReadableSpace() - 1);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user