diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-23 09:43:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-23 09:43:49 +0000 |
commit | 256846bb65357d2d564ec394394c235408eaf4a7 (patch) | |
tree | d3cf11f4e515f552a0d2fcd01e5137c324b89de3 /io | |
parent | d480547e995bccb6c33a166869897dd396357cef (diff) | |
download | glibc-256846bb65357d2d564ec394394c235408eaf4a7.zip glibc-256846bb65357d2d564ec394394c235408eaf4a7.tar.gz glibc-256846bb65357d2d564ec394394c235408eaf4a7.tar.bz2 |
Update.
1998-12-29 Geoff Keating <geoffk@ozemail.com.au>
* sunrpc/Versions: Include _authenticate, it's defined in a user
header (in fact, it's the whole contents of rpc/svc_auth.h).
1999-01-23 Ulrich Drepper <drepper@cygnus.com>
* io/ftw.c (process_entry): Initialize flag since not all gcc
versions are smart enough to see that this is no problem.
* elf/dl-open.c (_dl_init_paths): Check malloc result.
* csu/Versions: Add __frame_state_for.
Diffstat (limited to 'io')
-rw-r--r-- | io/ftw.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* File tree walker functions. - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -240,7 +240,7 @@ process_entry (struct ftw_data *data, struct dir_data *dir, const char *name, { struct STAT st; int result = 0; - int flag; + int flag = 0; if (name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'))) |