diff options
author | Byron Jones <bjones@mozilla.com> | 2013-03-28 09:04:55 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-03-28 09:04:55 +0100 |
commit | 64ed562d5775252c75207d2e97d985115b6200f5 (patch) | |
tree | c1a62441f9b95a49134467bfff3aa90bdfbf6e99 /showdependencygraph.cgi | |
parent | e4a5c4996044c0de0f889aa3687ddfc89fa00be7 (diff) | |
download | bugzilla-64ed562d5775252c75207d2e97d985115b6200f5.tar.gz bugzilla-64ed562d5775252c75207d2e97d985115b6200f5.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 0b9825b91..961d30578 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -44,7 +44,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 |