probe.c: Fix Function 'memcmp' is called without explicitly comparing result

This commit is contained in:
Sergey Ponomarev 2024-04-09 23:42:57 +03:00 committed by Yves Rutschle
parent 9286b55702
commit d0a016221c

View File

@ -323,7 +323,7 @@ static int is_adb_protocol(const char *p, ssize_t len, struct sslhcfg_protocols_
if (len < min_data_packet_size + sizeof(empty_message))
return PROBE_AGAIN;
if (memcmp(&p[0], empty_message, sizeof(empty_message)))
if (memcmp(&p[0], empty_message, sizeof(empty_message)) != 0)
return PROBE_NEXT;
return probe_adb_cnxn_message(&p[sizeof(empty_message)]);