Commit 3f1bb0cc authored by terry%mozilla.org's avatar terry%mozilla.org

Fixed icky infinite loop bug.

parent c4246f55
...@@ -666,7 +666,7 @@ sub RemoveVotes { ...@@ -666,7 +666,7 @@ sub RemoveVotes {
$whopart); $whopart);
my @list; my @list;
while (MoreSQLData()) { while (MoreSQLData()) {
my ($name, $count) = (@_); my ($name, $count) = (FetchSQLData());
push(@list, [$name, $count]); push(@list, [$name, $count]);
} }
if (0 < @list) { if (0 < @list) {
...@@ -678,8 +678,9 @@ sub RemoveVotes { ...@@ -678,8 +678,9 @@ sub RemoveVotes {
$substs{"bugid"} = $id; $substs{"bugid"} = $id;
$substs{"reason"} = $reason; $substs{"reason"} = $reason;
$substs{"count"} = $count; $substs{"count"} = $count;
print SENDMAIL PerformSubsts(Param("voteremovedmail"), my $msg = PerformSubsts(Param("voteremovedmail"),
\%substs); \%substs);
print SENDMAIL $msg;
close SENDMAIL; close SENDMAIL;
} }
} }
......
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