From 61fa0b00b8e31c0e652320e84421569554828949 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Sun, 27 Apr 2003 20:43:12 +0000 Subject: Bug 197171 - report.cgi: Use of uninitialized value in numeric lt. Patch by gerv; r,a=justdave. --- report.cgi | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'report.cgi') diff --git a/report.cgi b/report.cgi index 2a081606b..c311cc797 100755 --- a/report.cgi +++ b/report.cgi @@ -214,9 +214,7 @@ if ($cgi->param('format') eq "bar") { $min_width *= (scalar(@row_names) || 1); } - if ($width < $min_width) { - $width = $min_width; - } + $vars->{'min_width'} = $min_width; } $vars->{'width'} = $width if $width; -- cgit v1.2.3-24-g4f1b