Commit 3a6b7a7b authored by gerv%gerv.net's avatar gerv%gerv.net

Bug 173808 - Use of uninitialized value in subtraction (-) at duplicates.cgi…

Bug 173808 - Use of uninitialized value in subtraction (-) at duplicates.cgi line 133. Patch by gerv; r=bbaetz.
parent eeec04a1
......@@ -135,7 +135,7 @@ if (!tie(%before, 'AnyDBM_File', "data/duplicates/dupes$whenever",
}
} else {
# Calculate the deltas
($delta{$_} = $count{$_} - $before{$_}) foreach (keys(%count));
($delta{$_} = $count{$_} - ($before{$_} || 0)) foreach (keys(%count));
$dobefore = 1;
}
......
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