cache: Fix iteration of rules

Incrementation of index ended up outside iteration block at
earlier refactoring.
This commit is contained in:
Johan Wikman
2017-11-20 15:18:17 +02:00
parent 1c58df8307
commit cd89b976a9

View File

@ -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)
{ {