diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-04-04 00:41:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-04-04 00:41:39 +0000 |
commit | abca9f7f5893adee7d0eac2ca8962b9c5321e0fe (patch) | |
tree | fbd2af557eec256cb4733c1b65f771124e474bef /nptl_db/td_ta_thr_iter.c | |
parent | 6472c918f768547df3309f11a8158477ac032a5b (diff) | |
download | glibc-abca9f7f5893adee7d0eac2ca8962b9c5321e0fe.tar glibc-abca9f7f5893adee7d0eac2ca8962b9c5321e0fe.tar.gz glibc-abca9f7f5893adee7d0eac2ca8962b9c5321e0fe.tar.bz2 glibc-abca9f7f5893adee7d0eac2ca8962b9c5321e0fe.zip |
Update.
* inet/test-ifaddrs.c: Fight warnings.
* argp/argp-help.c: Fight warnings.
* include/time.h: Declare __difftime.
Diffstat (limited to 'nptl_db/td_ta_thr_iter.c')
-rw-r--r-- | nptl_db/td_ta_thr_iter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl_db/td_ta_thr_iter.c b/nptl_db/td_ta_thr_iter.c index 18c5f2e76d..66e4376659 100644 --- a/nptl_db/td_ta_thr_iter.c +++ b/nptl_db/td_ta_thr_iter.c @@ -1,5 +1,5 @@ /* Iterate over a process's threads. - Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1999,2000,2001,2002,2003,2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 1999. @@ -119,7 +119,7 @@ td_ta_thr_iter (const td_thragent_t *ta_arg, td_thr_iter_f *callback, { td_thragent_t *const ta = (td_thragent_t *) ta_arg; td_err_e err; - psaddr_t list; + psaddr_t list = 0; LOG ("td_ta_thr_iter"); |