diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | posix/regexec.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index a2d36ccf8f..54ccf3d7ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/posix/regexec.c b/posix/regexec.c index c524ce8fb6..be361cf51f 100644 --- a/posix/regexec.c +++ b/posix/regexec.c @@ -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 |