cache: Fix iteration of rules
Incrementation of index ended up outside iteration block at earlier refactoring.
This commit is contained in:
4
server/modules/filter/cache/rules.cc
vendored
4
server/modules/filter/cache/rules.cc
vendored
@ -1352,9 +1352,9 @@ static bool cache_rule_matches_column_simple(CACHE_RULE *self, const char *defau
|
|||||||
{
|
{
|
||||||
matches = !matches;
|
matches = !matches;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
++i;
|
++i;
|
||||||
|
}
|
||||||
|
|
||||||
if (tables)
|
if (tables)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user