Commit 58d6d1b7 authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 143743: Eliminates warning by properly initializing array reference.

Fix by Myk Melez <myk@mozilla.org>. r=bbaetz,justdave
parent 714614b8
......@@ -167,7 +167,7 @@ sub GetBug {
$bug->{'assignee_email'}) = FetchSQLData();
$bug->{'open'} = IsOpenedState($bug->{'status'});
$bug->{'dependencies'} = ();
$bug->{'dependencies'} = [];
return $bug;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment