diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-18 18:10:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-18 18:10:57 +0000 |
commit | f6c93bd9c82f9feabb171567fb0b25777997d7f6 (patch) | |
tree | 12b8f8b0aa89c418c0d6d6cd9ab2469eecd0b8dc /intl | |
parent | fae49c6287347a588cbc9e454fa000499210046e (diff) | |
download | glibc-f6c93bd9c82f9feabb171567fb0b25777997d7f6.zip glibc-f6c93bd9c82f9feabb171567fb0b25777997d7f6.tar.gz glibc-f6c93bd9c82f9feabb171567fb0b25777997d7f6.tar.bz2 |
Update.
2003-06-18 Ulrich Drepper <drepper@redhat.com>
* pthread_mutex_destroy.c (__pthread_mutex_destroy): For
error-checking mutex detect busy mutexes.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/localealias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intl/localealias.c b/intl/localealias.c index 324f2fe..ed8747d 100644 --- a/intl/localealias.c +++ b/intl/localealias.c @@ -344,7 +344,7 @@ read_alias_file (fname, fname_len) /* Make sure the inner loop will be left. The outer loop will exit at the `feof' test. */ break; - while (strchr (buf, '\n') == NULL) + while (strchr (buf, '\n') == NULL); } /* Should we test for ferror()? I think we have to silently ignore |