From: Rich Felker Date: Mon, 7 May 2012 21:50:32 +0000 (-0400) Subject: fix copy and paste error in regex code causing mishandling of \) in BRE X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=17361482108e2a8757dc4aa69ed36b002251a08f fix copy and paste error in regex code causing mishandling of \) in BRE --- diff --git a/src/regex/regcomp.c b/src/regex/regcomp.c index 5f119d17..c72f7d63 100644 --- a/src/regex/regcomp.c +++ b/src/regex/regcomp.c @@ -1186,7 +1186,7 @@ tre_parse(tre_parse_ctx_t *ctx) ctx->re++; goto lparen; } - if (!(ctx->cflags & REG_EXTENDED) && *(ctx->re + 1) == CHAR_LPAREN) + if (!(ctx->cflags & REG_EXTENDED) && *(ctx->re + 1) == CHAR_RPAREN) { goto empty_atom; }