зеркало из https://github.com/mozilla/pjs.git
b=349725, fix off-by-one error in files list of xml output, r=rhelmer
This commit is contained in:
Родитель
895ee2682e
Коммит
8a196a1824
|
@ -386,7 +386,7 @@ elsif( $show_xml ) {
|
|||
print " <log>$ci_log</log>\n";
|
||||
if (!$xml_nofiles) {
|
||||
print " <files>\n";
|
||||
for (my $f = 0; $f != $#ci_files; $f++) {
|
||||
for (my $f = 0; $f <= $#ci_files; $f++) {
|
||||
print " <f rev=\"" . $ci_revs[$f] . "\">" . &html_log($ci_files[$f]) . "</f>\n";
|
||||
}
|
||||
print " </files>\n";
|
||||
|
|
Загрузка…
Ссылка в новой задаче