commit | 2306a67745ebdf3f98bc954248b74a3f1d57cdc2 | [log] [tgz] |
---|---|---|
author | Tobin C. Harding <me@tobin.cc> | Fri Mar 02 08:42:59 2018 +1100 |
committer | Tobin C. Harding <me@tobin.cc> | Sat Apr 07 08:50:34 2018 +1000 |
tree | 74e40740eb52d3dfc551f5b3f01e29dd6d360068 | |
parent | 34827374492580b27c3cba29d493dab28c8c25d3 [diff] |
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: Tobin C. Harding <me@tobin.cc>