2005-06-27 Carlos O'Donell <carlos@systemhalted.org>

* posix/regcomp.c (re_compile_internal): __libc_lock_init
	after init_dfa.
This commit is contained in:
Ulrich Drepper 2005-07-10 22:02:15 +00:00
parent d075e8ba45
commit 96c91d1cfe
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-06-27 Carlos O'Donell <carlos@systemhalted.org>
* posix/regcomp.c (re_compile_internal): __libc_lock_init
after init_dfa.
2005-07-08 Ulrich Drepper <drepper@redhat.com>
* sysdeps/x86_64/fpu/s_sincosl.S: Use retq not ret. Remove

View File

@ -774,8 +774,6 @@ re_compile_internal (preg, pattern, length, syntax)
}
preg->used = sizeof (re_dfa_t);
__libc_lock_init (dfa->lock);
err = init_dfa (dfa, length);
if (BE (err != REG_NOERROR, 0))
{
@ -789,6 +787,8 @@ re_compile_internal (preg, pattern, length, syntax)
strncpy (dfa->re_str, pattern, length + 1);
#endif
__libc_lock_init (dfa->lock);
err = re_string_construct (&regexp, pattern, length, preg->translate,
syntax & RE_ICASE, dfa);
if (BE (err != REG_NOERROR, 0))