Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 30 Jun 1999 16:55:43 +0000 (16:55 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 30 Jun 1999 16:55:43 +0000 (16:55 +0000)
1999-06-30  Ulrich Drepper  <drepper@cygnus.com>

* wcsmbs/wcsrchr.c: Fix handling of L'\0' parameter.
* wcsmbs/wcschr.c: Likewise.

ChangeLog
wcsmbs/wcschr.c
wcsmbs/wcsrchr.c

index 48bc56b..38e6508 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-06-30  Ulrich Drepper  <drepper@cygnus.com>
+
+       * wcsmbs/wcsrchr.c: Fix handling of L'\0' parameter.
+       * wcsmbs/wcschr.c: Likewise.
+
 1999-06-28  Ulrich Drepper  <drepper@cygnus.com>
 
        * sysdeps/libm-ieee754/e_gamma_r.c: Initialize *signgamp for NaN
index 7f5c7dc..a884c0b 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,11 +25,10 @@ wcschr (wcs, wc)
      register const wchar_t *wcs;
      register const wchar_t wc;
 {
-  while (*wcs != L'\0')
+  do
     if (*wcs == wc)
       return (wchar_t *) wcs;
-    else
-      ++wcs;
+  while (*wcs++ != L'\0')
 
   return NULL;
 }
index 9f032c7..59184c5 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper, <drepper@gnu.ai.mit.edu>
 
@@ -28,12 +28,10 @@ wcsrchr (wcs, wc)
 {
   const wchar_t *retval = NULL;
 
-  while (*wcs != L'\0')
-    {
-      if (*wcs == wc)
-       retval = wcs;
-      ++wcs;
-    }
+  do
+    if (*wcs == wc)
+      retval = wcs;
+  while (*wcs++ != L'\0')
 
   return (wchar_t *) retval;
 }