From: Florian Krohm Date: Tue, 10 Sep 2013 14:00:45 +0000 (+0000) Subject: Fix a bug introduced in the previous revision. X-Git-Tag: svn/VALGRIND_3_9_0~153 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc0d9e14cf4e4fdc0a28bbbdc7f5352c34cb81b2;p=thirdparty%2Fvalgrind.git Fix a bug introduced in the previous revision. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13538 --- diff --git a/auxprogs/nightly-build-summary b/auxprogs/nightly-build-summary index ed3cf553f5..a6afbe366a 100755 --- a/auxprogs/nightly-build-summary +++ b/auxprogs/nightly-build-summary @@ -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);