diff --git a/memanalyze.pl b/memanalyze.pl
index 86c967c8c0987d17068d73152b8fb009b3d6eb4b..faca19c04daaa0fde4d903dcbd06eedc37c2a0a8 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";
         }