mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 17:48:21 +00:00
Adding back in a call to match pure rules when clearing signature
state. Previous change had removed this, but I believe we still need it.
This commit is contained in:
parent
a0bb139f22
commit
51aed48d67
3 changed files with 4 additions and 2 deletions
2
CHANGES
2
CHANGES
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
2.3-686 | 2015-04-09 15:22:28 -0700
|
2.3-687 | 2015-04-10 07:32:52 -0700
|
||||||
|
|
||||||
* Remove stale signature benchmarking code (-L command-line option).
|
* Remove stale signature benchmarking code (-L command-line option).
|
||||||
(Jon Siwek)
|
(Jon Siwek)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.3-686
|
2.3-687
|
||||||
|
|
|
@ -1097,6 +1097,8 @@ void RuleMatcher::ClearEndpointState(RuleEndpointState* state)
|
||||||
{
|
{
|
||||||
state->payload_size = -1;
|
state->payload_size = -1;
|
||||||
|
|
||||||
|
ExecPureRules(state, 1);
|
||||||
|
|
||||||
loop_over_list(state->matchers, j)
|
loop_over_list(state->matchers, j)
|
||||||
state->matchers[j]->state->Clear();
|
state->matchers[j]->state->Clear();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue