GenericRegex: don't throw/abort on syntax error (unclosed parenthesis).

This commit is contained in:
ylavic 2018-12-02 23:26:58 +01:00
parent 30d92a6399
commit be96f4d7fb

View File

@ -395,8 +395,7 @@ private:
}
return false;
default:
RAPIDJSON_ASSERT(op == kOneOrMore);
case kOneOrMore:
if (operandStack.GetSize() >= sizeof(Frag)) {
Frag e = *operandStack.template Pop<Frag>(1);
SizeType s = NewState(kRegexInvalidState, e.start, 0);
@ -405,6 +404,10 @@ private:
return true;
}
return false;
default:
// syntax error (e.g. unclosed kLeftParenthesis)
return false;
}
}