mirror of
https://github.com/curl/curl.git
synced 2025-03-01 15:15:34 +08:00
mem-include-scan.pl: require a non-word letter before memory funcs
... so that ldap_memfree() for example doesn't match the scan for free. Closes #7061
This commit is contained in:
parent
acf91ff75e
commit
e35d7c0492
@ -6,7 +6,7 @@
|
|||||||
# | (__| |_| | _ <| |___
|
# | (__| |_| | _ <| |___
|
||||||
# \___|\___/|_| \_\_____|
|
# \___|\___/|_| \_\_____|
|
||||||
#
|
#
|
||||||
# Copyright (C) 2010 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
# Copyright (C) 2010 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||||
#
|
#
|
||||||
# This software is licensed as described in the file COPYING, which
|
# This software is licensed as described in the file COPYING, which
|
||||||
# you should have received as part of this distribution. The terms
|
# you should have received as part of this distribution. The terms
|
||||||
@ -43,7 +43,7 @@ sub scanfile {
|
|||||||
|
|
||||||
open(F, "<$file");
|
open(F, "<$file");
|
||||||
while(<F>) {
|
while(<F>) {
|
||||||
if($_ =~ /(free|alloc|strdup)\(/) {
|
if($_ =~ /\W(free|alloc|strdup)\(/) {
|
||||||
$memfunc++;
|
$memfunc++;
|
||||||
}
|
}
|
||||||
elsif($_ =~ /^ *# *include \"memdebug.h\"/) {
|
elsif($_ =~ /^ *# *include \"memdebug.h\"/) {
|
||||||
|
Loading…
Reference in New Issue
Block a user