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>
This commit is contained in:
Tobin C. Harding 2017-11-22 10:14:45 +11:00
parent 0adb32858b
commit 6d23dd9bbb
1 changed files with 1 additions and 1 deletions

View File

@ -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') {