1
0
Fork 0

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 <me@tobin.cc>
hifive-unleashed-5.1
Tobin C. Harding 2017-11-14 09:25:11 +11:00
parent dd98c252ae
commit a11949ec20
1 changed files with 1 additions and 0 deletions

View File

@ -228,6 +228,7 @@ sub may_leak_address
# Signal masks.
if ($line =~ '^SigBlk:' or
$line =~ '^SigIgn:' or
$line =~ '^SigCgt:') {
return 0;
}