mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
[BZ #6]
Update. * posix/regexec.c (transit_state): Fix typo in commented-out code [BZ #6].
This commit is contained in:
parent
380f06d397
commit
bf14fb7c60
@ -1,5 +1,8 @@
|
||||
2004-02-16 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* posix/regexec.c (transit_state): Fix typo in commented-out code
|
||||
[BZ #6].
|
||||
|
||||
* sysdeps/posix/getaddrinfo.c (match_prefix): Correctly match
|
||||
partial bytes [BZ #24].
|
||||
* posix/Makefile (tests): Add bug-ga1.
|
||||
|
@ -2198,7 +2198,7 @@ transit_state (err, mctx, state)
|
||||
{
|
||||
/* don't use transition table */
|
||||
next_state = transit_state_sb (err, mctx, state);
|
||||
if (BE (next_state == NULL && err != REG_NOERROR, 0))
|
||||
if (BE (next_state == NULL && *err != REG_NOERROR, 0))
|
||||
return NULL;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user