Skip to content
Permalink
Browse files
Merge pull request #7503 from MerryMage/signed_comparison
BTReal: Correct comparison of integers of different signs
  • Loading branch information
Tilka committed Oct 15, 2018
2 parents cffca7c + 688e8db commit cb576bf
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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)

0 comments on commit cb576bf

Please sign in to comment.