diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-11-13 06:38:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-11-13 06:38:30 +0000 |
commit | f6953f16bb49383a162560662778a377e4501039 (patch) | |
tree | 40e05a364064302560cd616d4817cb5595516e35 | |
parent | 06e8303a288f626929d69e57eb4128b2e40b1313 (diff) | |
download | glibc-f6953f16bb49383a162560662778a377e4501039.zip glibc-f6953f16bb49383a162560662778a377e4501039.tar.gz glibc-f6953f16bb49383a162560662778a377e4501039.tar.bz2 |
Update.
* posix/regcomp.c (parse_bracket_exp): If end of expression is
seen, return EBRACK error, not BADPAT.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | posix/regcomp.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2003-11-12 Ulrich Drepper <drepper@redhat.com> + * posix/regcomp.c (parse_bracket_exp): If end of expression is + seen, return EBRACK error, not BADPAT. + * posix/regcomp.c (parse_expression): If token is OP_OPEN_DUP_NUM and RE_CONTEXT_INVALID_DUP syntax flag is set, fail. * posix/regex.h (RE_CONTEXT_INVALUD_OPS): New macro. diff --git a/posix/regcomp.c b/posix/regcomp.c index c404929..531ec94 100644 --- a/posix/regcomp.c +++ b/posix/regcomp.c @@ -2993,7 +2993,7 @@ parse_bracket_exp (regexp, dfa, token, syntax, err) token_len = peek_token_bracket (token, regexp, syntax); if (BE (token->type == END_OF_RE, 0)) { - *err = REG_BADPAT; + *err = REG_EBRACK; goto parse_bracket_exp_free_return; } if (token->type == OP_CHARSET_RANGE) |