mirror of
https://sourceware.org/git/glibc.git
synced 2025-10-21 14:53:53 +03:00
Update.
* posix/regexec.c (check_arrival): Remove duplicate test. 2003-12-15 Ulrich Drepper <drepper@redhat.com> * posix/regcomp.c: Make !RE_ENABLE_I18N work again. * posix/regex_internal.c: Likewise. * posix/regexec.c: Likewise. Patch by Paolo Bonzini. 2003-12-14 Paolo Bonzini <bonzini@gnu.org>
This commit is contained in:
@@ -406,8 +406,11 @@ re_compile_fastmap_iter (bufp, init_state, fastmap)
|
||||
}
|
||||
}
|
||||
#endif /* RE_ENABLE_I18N */
|
||||
else if (type == END_OF_RE || type == OP_PERIOD
|
||||
|| type == OP_UTF8_PERIOD)
|
||||
else if (type == OP_PERIOD
|
||||
#ifdef RE_ENABLE_I18N
|
||||
|| type == OP_UTF8_PERIOD
|
||||
#endif /* RE_ENABLE_I18N */
|
||||
|| type == END_OF_RE)
|
||||
{
|
||||
memset (fastmap, '\1', sizeof (char) * SBC_MAX);
|
||||
if (type == END_OF_RE)
|
||||
|
Reference in New Issue
Block a user