Skip to content
Snippets Groups Projects
Commit 2306a677 authored by Tobin C. Harding's avatar Tobin C. Harding
Browse files

leaking_addresses: explicitly name variable used in regex


Currently sub routine may_leak_address() is checking regex against Perl
special variable $_ which is _fortunately_ being set correctly in a loop
before this sub routine is called.  We already have declared a variable
to hold this value '$line' we should use it.

Use $line in regex match instead of implicit $_

Signed-off-by: default avatarTobin C. Harding <me@tobin.cc>
parent 34827374
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment