Skip to content

Commit a11949e

Browse files
committedNov 13, 2017
leaking_addresses: add SigIgn to false positives
Signal masks are false positives, we already check for SigBlk and SigCgt but we missed SigIgn. Add SigIgn to false positive check. Signed-off-by: Tobin C. Harding <[email protected]>
1 parent dd98c25 commit a11949e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎scripts/leaking_addresses.pl

+1
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ sub may_leak_address
228228

229229
# Signal masks.
230230
if ($line =~ '^SigBlk:' or
231+
$line =~ '^SigIgn:' or
231232
$line =~ '^SigCgt:') {
232233
return 0;
233234
}

0 commit comments

Comments
 (0)