1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 07:38:49 -05:00

James Bursa's fix to make this deal with malloc(0) as OK to free()

This commit is contained in:
Daniel Stenberg 2004-05-07 18:54:09 +00:00
parent 3394c01826
commit 686ba84128

View File

@ -88,7 +88,7 @@ while(<FILE>) {
if($function =~ /free\(0x([0-9a-f]*)/) {
$addr = $1;
if($sizeataddr{$addr} == 0) {
if(!exists $sizeataddr{$addr}) {
print "FREE ERROR: No memory allocated: $line\n";
}
elsif(-1 == $sizeataddr{$addr}) {