mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix an off-by-one error in the marking of the O_CH operator
following an OOR2 operator. PR: 130504 MFC after: 2 weeks
This commit is contained in:
parent
bca3476acd
commit
e7cbc6ee95
1 changed files with 1 additions and 1 deletions
|
|
@ -1075,7 +1075,7 @@ step(struct re_guts *g,
|
|||
OP(s = g->strip[pc+look]) != O_CH;
|
||||
look += OPND(s))
|
||||
assert(OP(s) == OOR2);
|
||||
FWD(aft, aft, look);
|
||||
FWD(aft, aft, look + 1);
|
||||
}
|
||||
break;
|
||||
case OOR2: /* propagate OCH_'s marking */
|
||||
|
|
|
|||
Loading…
Reference in a new issue