Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Enable filtering in plugins
Browse files Browse the repository at this point in the history
Correct a severe bug in Processor::ProcessDataset. Before this commit
Processor evaluate all user-defined plugins even if some of them return
false. It does not affect event selection performed by PECReaderPlugin.
  • Loading branch information
andrey-popov committed Jan 29, 2014
1 parent 9901232 commit d65b62e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/Processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void Processor::ProcessDataset(Dataset const &dataset)
for (unsigned i = 1; i < path.size(); ++i)
{
if (not path.at(i)->ProcessEvent())
continue;
break;
}
}

Expand Down

0 comments on commit d65b62e

Please sign in to comment.