mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
says nothing if no errors were found
This commit is contained in:
parent
ae58d84429
commit
7db43ae0ed
@ -80,19 +80,16 @@ while(<STDIN>) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(0 == $totalmem) {
|
if($totalmem) {
|
||||||
print "No leak found\n";
|
print "Leak detected: memory still allocated: $totalmem bytes\n";
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
print "Leak detected: memory still allocated: $totalmem bytes\n";
|
for(keys %sizeataddr) {
|
||||||
|
$addr = $_;
|
||||||
for(keys %sizeataddr) {
|
$size = $sizeataddr{$addr};
|
||||||
$addr = $_;
|
if($size) {
|
||||||
$size = $sizeataddr{$addr};
|
print "At $addr, there's $size bytes.\n";
|
||||||
if($size) {
|
print " allocated by ".$getmem{$addr}."\n";
|
||||||
print "At $addr, there's $size bytes.\n";
|
}
|
||||||
print " allocated by ".$getmem{$addr}."\n";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user