From: Byron Jones Date: Thu, 28 Mar 2013 08:05:41 +0000 (+0800) Subject: Fix uninitialized warning caused by Bug 850639 X-Git-Tag: bugzilla-4.5.1~182 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c97565262265c7e47610c81bcaf67c03c113a131;p=thirdparty%2Fbugzilla.git Fix uninitialized warning caused by Bug 850639 --- diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 838402a8eb..c8b99521cb 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -29,7 +29,8 @@ my $vars = {}; # performance. my $dbh = Bugzilla->switch_to_shadow_db(); -our (%seen, %edgesdone, %bugtitles, $bug_count); +our (%seen, %edgesdone, %bugtitles); +our $bug_count = 0; # CreateImagemap: This sub grabs a local filename as a parameter, reads the # dot-generated image map datafile residing in that file and turns it into