From: cjwatson <> Date: Mon, 22 Sep 2003 05:28:39 +0000 (-0800) Subject: [project @ 2003-09-21 22:28:39 by cjwatson] X-Git-Tag: release/2.6.0~779 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9c30bfc9b1af111926b4e985186aca399da83755;p=debbugs.git [project @ 2003-09-21 22:28:39 by cjwatson] Fix uninitialized variable warnings when raw=yes. --- diff --git a/cgi/common.pl b/cgi/common.pl index 63f0db0f..419930c8 100644 --- a/cgi/common.pl +++ b/cgi/common.pl @@ -497,7 +497,8 @@ sub htmlizebugs { my @status = (); my %count; - my ($header, $footer); + my $header = ''; + my $footer = ''; if (@bugs == 0) { return "

No reports found!

\n";