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

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

leaking_addresses: fix typo function not called



Currently code uses a check against an undefined variable because the
variable is a sub routine name and is not evaluated.

Evaluate subroutine; add parenthesis to sub routine name.

Signed-off-by: default avatarTobin C. Harding <me@tobin.cc>
parent 0adb3285
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -209,7 +209,7 @@ sub is_false_positive
		return 1;
	}

	if (is_x86_64) {
	if (is_x86_64()) {
		# vsyscall memory region, we should probably check against a range here.
		if ($match =~ '\bf{10}600000\b' or
		    $match =~ '\bf{10}601000\b') {