]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixed stupid perl warning.
authorterry%mozilla.org <>
Wed, 20 Oct 1999 07:06:41 +0000 (07:06 +0000)
committerterry%mozilla.org <>
Wed, 20 Oct 1999 07:06:41 +0000 (07:06 +0000)
buglist.cgi

index 393616af9ee85306bf01e7ec85f93f7dd0150b2c..f1915070730a65503705a5c59c965eb517b49c1f 100755 (executable)
@@ -577,7 +577,9 @@ while (@row = FetchSQLData()) {
                 next;
             }
             my $value = shift @row;
-
+            if (!defined $value) {
+                next;
+            }
             if ($::needquote{$c}) {
                 $value = html_quote($value);
             } else {