This commit is contained in:
Matthew Wilson 2006-04-17 08:08:27 +00:00
parent 19732823f9
commit eb839dc336

View file

@ -1115,8 +1115,8 @@ sub verifyAllPrerequisites {
return [] unless $lastResultsSize;
until ($currentResultsSize == $lastResultsSize) {
$currentResultsSize = $lastResultsSize;
my (%hashTemp,$newMsgLoop) = %{$self->verifyEventPrerequisites($lastResults,1)}
$lastResults = {%$lastResults,%hashTemp};
my ($hashTemp,$newMsgLoop) = $self->verifyEventPrerequisites($lastResults,1);
$lastResults = {%$lastResults,%$hashTemp};
foreach my $newMsg (@$newMsgLoop) {
my $add = 1;
foreach my $oldMsg (@$msgLoop) {