]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2003-09-21 22:28:39 by cjwatson]
authorcjwatson <>
Mon, 22 Sep 2003 05:28:39 +0000 (21:28 -0800)
committercjwatson <>
Mon, 22 Sep 2003 05:28:39 +0000 (21:28 -0800)
Fix uninitialized variable warnings when raw=yes.

cgi/common.pl

index 63f0db0f8c1779d4cd69ba6feb3a433634718e77..419930c82f2bd96c7f258b2fbbed46c5e12a1694 100644 (file)
@@ -497,7 +497,8 @@ sub htmlizebugs {
 
     my @status = ();
     my %count;
-    my ($header, $footer);
+    my $header = '';
+    my $footer = '';
 
     if (@bugs == 0) {
         return "<HR><H2>No reports found!</H2></HR>\n";