Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -228,6 +228,7 @@ sub may_leak_address

	# Signal masks.
	if ($line =~ '^SigBlk:' or
	    $line =~ '^SigIgn:' or
	    $line =~ '^SigCgt:') {
		return 0;
	}