From: terry%mozilla.org <> Date: Wed, 20 Oct 1999 07:06:41 +0000 (+0000) Subject: Fixed stupid perl warning. X-Git-Tag: bugzilla-2.8~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db3478cb179febf37785ff26a486f7a0e5d2cb4e;p=thirdparty%2Fbugzilla.git Fixed stupid perl warning. --- diff --git a/buglist.cgi b/buglist.cgi index 393616af9e..f191507073 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -577,7 +577,9 @@ while (@row = FetchSQLData()) { next; } my $value = shift @row; - + if (!defined $value) { + next; + } if ($::needquote{$c}) { $value = html_quote($value); } else {