diff options
author | Tobin C. Harding <me@tobin.cc> | 2017-11-22 10:14:45 +1100 |
---|---|---|
committer | Tobin C. Harding <me@tobin.cc> | 2018-04-07 08:50:34 +1000 |
commit | 6d23dd9bbb2e71f1bc1bfbe77831e15cc505a995 (patch) | |
tree | 15115f5fc84a7b3d587755b04acdaa82d2c117be /scripts | |
parent | 0adb32858b0bddf4ada5f364a84ed60b196dbcda (diff) | |
download | linux-stable-6d23dd9bbb2e71f1bc1bfbe77831e15cc505a995.tar.gz linux-stable-6d23dd9bbb2e71f1bc1bfbe77831e15cc505a995.tar.bz2 linux-stable-6d23dd9bbb2e71f1bc1bfbe77831e15cc505a995.zip |
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>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/leaking_addresses.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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') { |