mirror of
https://passt.top/passt
synced 2025-04-01 20:04:15 +00:00
tap, tcp: Fix two comparisons with different signedness reported by gcc 7
For some reason, those are not reported by recent versions of gcc. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
6040f16239
commit
f6d9787d30
2
tap.c
2
tap.c
@ -340,7 +340,7 @@ resume:
|
||||
iph = (struct iphdr *)(eh + 1);
|
||||
if ((iph->ihl * 4) + sizeof(*eh) > len)
|
||||
continue;
|
||||
if (iph->ihl * 4 < sizeof(*iph))
|
||||
if (iph->ihl * 4 < (int)sizeof(*iph))
|
||||
continue;
|
||||
|
||||
if (iph->saddr && c->addr4_seen != iph->saddr) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user