We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d92092 commit 24fe33aCopy full SHA for 24fe33a
pcap-usb-linux-common.c
@@ -36,7 +36,7 @@
36
static inline u_int
37
u_int_sum(u_int a, u_int b)
38
{
39
- return (((b) <= UINT_MAX - (b)) ? (a) + (b) : UINT_MAX);
+ return (((b) <= UINT_MAX - (a)) ? (a) + (b) : UINT_MAX);
40
}
41
42
/*
0 commit comments