Commit a11949ec authored by Tobin C. Harding's avatar Tobin C. Harding

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: default avatarTobin C. Harding <me@tobin.cc>
parent dd98c252
......@@ -228,6 +228,7 @@ sub may_leak_address
# Signal masks.
if ($line =~ '^SigBlk:' or
$line =~ '^SigIgn:' or
$line =~ '^SigCgt:') {
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment