From 6d23dd9bbb2e71f1bc1bfbe77831e15cc505a995 Mon Sep 17 00:00:00 2001
From: "Tobin C. Harding" <me@tobin.cc>
Date: Wed, 22 Nov 2017 10:14:45 +1100
Subject: [PATCH] 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: Tobin C. Harding <me@tobin.cc>
---
 scripts/leaking_addresses.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/leaking_addresses.pl b/scripts/leaking_addresses.pl
index bc5788000018..b0efa21239ac 100755
--- a/scripts/leaking_addresses.pl
+++ b/scripts/leaking_addresses.pl
@@ -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') {
-- 
GitLab