[BZ #6]
authorUlrich Drepper <drepper@redhat.com>
Mon, 16 Feb 2004 19:27:53 +0000 (19:27 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 16 Feb 2004 19:27:53 +0000 (19:27 +0000)
Update.
* posix/regexec.c (transit_state): Fix typo in commented-out code
[BZ #6].

ChangeLog
posix/regexec.c

index a2d36cc..54ccf3d 100644 (file)
--- 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.
index c524ce8..be361cf 100644 (file)
@@ -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