diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-05 11:57:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-05 11:57:59 +0000 |
commit | 77ccaba1fa58f871e797ced648c2966842e477db (patch) | |
tree | fec432e9338d6956a0a9b6e5a03d330ff580bb06 /iconv | |
parent | eb27c43f02ec7890c19f424de458df903745db5d (diff) | |
download | glibc-77ccaba1fa58f871e797ced648c2966842e477db.zip glibc-77ccaba1fa58f871e797ced648c2966842e477db.tar.gz glibc-77ccaba1fa58f871e797ced648c2966842e477db.tar.bz2 |
Update.
1998-07-05 11:54 Ulrich Drepper <drepper@cygnus.com>
* Versions: Add pthread_attr_init ti GLIBC_2.1 version in libc.
Diffstat (limited to 'iconv')
-rw-r--r-- | iconv/gconv_conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconv/gconv_conf.c b/iconv/gconv_conf.c index 6457e37..002f4e4 100644 --- a/iconv/gconv_conf.c +++ b/iconv/gconv_conf.c @@ -326,7 +326,7 @@ read_conf_file (const char *filename, const char *directory, size_t dir_len, /* Process the known entries of the file. Comments start with `#' and end with the end of the line. Empty lines are ignored. */ - while (!feof (fp)) + while (!feof_unlocked (fp)) { char *rp, *endp, *word; ssize_t n = __getdelim (&line, &line_len, '\n', fp); |