From: Daniel Stenberg Date: Tue, 20 Feb 2001 13:58:56 +0000 (+0000) Subject: bugfix X-Git-Tag: curl-7_7_alpha2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f3d63ed5b17ce1803b5e2b61b53d27ec732f302;p=thirdparty%2Fcurl.git bugfix --- diff --git a/memanalyze.pl b/memanalyze.pl index 86c967c8c0..faca19c04d 100755 --- a/memanalyze.pl +++ b/memanalyze.pl @@ -145,7 +145,7 @@ if($totalmem) { for(keys %sizeataddr) { $addr = $_; $size = $sizeataddr{$addr}; - if($size) { + if($size > 0) { print "At $addr, there's $size bytes.\n"; print " allocated by ".$getmem{$addr}."\n"; }