summaryrefslogtreecommitdiff
path: root/wcsmbs/wcschr.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-06-30 16:55:43 +0000
committerUlrich Drepper <drepper@redhat.com>1999-06-30 16:55:43 +0000
commit1cda411d51fa3904b8c096677bd2afd08d784786 (patch)
treef98fe10210cd343195ca432f5af46dbf0e145253 /wcsmbs/wcschr.c
parentb3fc5f84d13573b9494fb1f0db9b5e80679e5098 (diff)
Update.
1999-06-30 Ulrich Drepper <drepper@cygnus.com> * wcsmbs/wcsrchr.c: Fix handling of L'\0' parameter. * wcsmbs/wcschr.c: Likewise.
Diffstat (limited to 'wcsmbs/wcschr.c')
-rw-r--r--wcsmbs/wcschr.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/wcsmbs/wcschr.c b/wcsmbs/wcschr.c
index 7f5c7dcba2..a884c0be4c 100644
--- a/wcsmbs/wcschr.c
+++ b/wcsmbs/wcschr.c
@@ -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;
}