Fixed wrong bracket placement (see #3011)

This commit is contained in:
Cristian Maglie 2015-04-21 18:07:42 +02:00
parent 82eb5692c6
commit 9e2fdcc8f4
1 changed files with 3 additions and 2 deletions

View File

@ -268,8 +268,9 @@ int Stream::findMulti( struct Stream::MultiTarget *targets, int tCount) {
if (c == t->str[t->index]) {
if (++t->index == t->len)
return t - targets;
} else
continue;
else
continue;
}
// if not we need to walk back and see if we could have matched further
// down the stream (ie '1112' doesn't match the first position in '11112'