зеркало из https://github.com/mozilla/pjs.git
I have a better fix for perl warning the last checkin was meant to fix.
Fix it at the source in Build.pm. This function really should return undefined if the result is undefined.
This commit is contained in:
Родитель
bc8811d60c
Коммит
1820cc2304
|
@ -1,8 +1,8 @@
|
||||||
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
||||||
|
|
||||||
|
|
||||||
# $Revision: 1.23 $
|
# $Revision: 1.24 $
|
||||||
# $Date: 2002-12-10 19:28:48 $
|
# $Date: 2002-12-10 19:43:21 $
|
||||||
# $Author: kestes%walrus.com $
|
# $Author: kestes%walrus.com $
|
||||||
# $Source: /home/jrmuizel/cvs-mirror/mozilla/webtools/tinderbox2/src/default_conf/BuildStatus.pm,v $
|
# $Source: /home/jrmuizel/cvs-mirror/mozilla/webtools/tinderbox2/src/default_conf/BuildStatus.pm,v $
|
||||||
# $Name: $
|
# $Name: $
|
||||||
|
@ -343,7 +343,7 @@ sub status2header_background_gif {
|
||||||
|
|
||||||
for ($i=0; $i <= $#latest_status; $i++) {
|
for ($i=0; $i <= $#latest_status; $i++) {
|
||||||
my ($status) = $latest_status[$i];
|
my ($status) = $latest_status[$i];
|
||||||
my ($out) = $STATUS{$status}{'header_background_gif'} || '';
|
my ($out) = $STATUS{$status}{'header_background_gif'};
|
||||||
push @out, $out;
|
push @out, $out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче