]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix a bug introduced in the previous revision.
authorFlorian Krohm <florian@eich-krohm.de>
Tue, 10 Sep 2013 14:00:45 +0000 (14:00 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Tue, 10 Sep 2013 14:00:45 +0000 (14:00 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13538

auxprogs/nightly-build-summary

index ed3cf553f597f69d35551f541aa4bf9046ad3ca3..a6afbe366ad3d63d4fcb906a3e28f8d68d7fe456 100755 (executable)
@@ -104,7 +104,7 @@ sub get_raw_data {
     my %hash = ();
 
 # 1) Locate the section with the info about the environment of this nightly run
-    for ($i = $i + 1; $i < $n; ++$i) {
+    for ($i = 0; $i < $n; ++$i) {
         last if ($lines[$i] =~ /^valgrind revision:/);
     }
     die "no info block in message $msgno" if ($i == $n);