Menu

#3 linux/syscall-linux.c:3714: possible bad test ?

v1.0 (example)
open
nobody
None
5
2016-04-01
2016-04-01
dcb
No

linux/syscall-linux.c:3714:15: warning: ordered comparison of pointer with integer zero [-Wextra]

Source code is

 if (status >= 0)
    masked_signals = lia64_sigset;

Maybe better code

 if (*status >= 0)
    masked_signals = lia64_sigset;

Discussion


Log in to post a comment.