Index: trunk/Nebulous/scripts/stats.pl
===================================================================
--- trunk/Nebulous/scripts/stats.pl	(revision 23398)
+++ trunk/Nebulous/scripts/stats.pl	(revision 23635)
@@ -17,4 +17,9 @@
 foreach my $line (split(/\n/, $data)) {
     my ($time, $method, $duration) = split(/\s+/, $line);
+
+    unless (defined $time and defined $method and defined $duration) {
+        warn "bad line: $line\n";
+        next;
+    }
 
     push @{$methods{$method}->{time}}, $time;
