提交 a5a47783 编写于 作者: R Rich Felker

fix regex breakage in last commit (failure to handle empty regex, etc.)

上级 d7a90b35
......@@ -1149,10 +1149,6 @@ tre_parse(tre_parse_ctx_t *ctx)
an empty set of `()', a bracket expression, `.', `^', `$',
a `\' followed by a character, or a single character. */
/* End of regexp? (empty string). */
if (!*ctx->re)
goto parse_literal;
switch (*ctx->re)
{
case CHAR_LPAREN: /* parenthesized subexpression */
......@@ -1394,6 +1390,7 @@ tre_parse(tre_parse_ctx_t *ctx)
if (!(ctx->cflags & REG_EXTENDED))
goto parse_literal;
case 0:
empty_atom:
result = tre_ast_new_literal(ctx->mem, EMPTY, -1, -1);
if (!result)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册