BTReal: Correct comparison of integers of different signs

This commit is contained in:
MerryMage 2018-10-15 19:30:58 +01:00
parent b5d855caf7
commit 688e8db904
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ void BluetoothReal::WaitForHCICommandComplete(const u16 opcode)
{
const int ret = libusb_interrupt_transfer(m_handle, HCI_EVENT, buffer.data(),
static_cast<int>(buffer.size()), &actual_length, 20);
if (ret != 0 || actual_length < sizeof(packet))
if (ret != 0 || actual_length < static_cast<int>(sizeof(packet)))
continue;
std::memcpy(&packet, buffer.data(), sizeof(packet));
if (packet.EventType == HCI_EVENT_COMMAND_COMPL && packet.Opcode == opcode)