diff options
author | Byron Jones <bjones@mozilla.com> | 2013-03-28 09:05:41 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-03-28 09:05:41 +0100 |
commit | c97565262265c7e47610c81bcaf67c03c113a131 (patch) | |
tree | 433bea28c2de396bc009ac692272c43e2d5d04cb /showdependencygraph.cgi | |
parent | 00ff400464fca420e0cc7e7ce402d9e9bd3ea8ec (diff) | |
download | bugzilla-c97565262265c7e47610c81bcaf67c03c113a131.tar.gz bugzilla-c97565262265c7e47610c81bcaf67c03c113a131.tar.xz |
Fix uninitialized warning caused by Bug 850639
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 838402a8e..c8b99521c 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 |