diff options
Diffstat (limited to 'nptl_db')
-rw-r--r-- | nptl_db/td_ta_clear_event.c | 4 | ||||
-rw-r--r-- | nptl_db/td_ta_set_event.c | 4 | ||||
-rw-r--r-- | nptl_db/td_ta_thr_iter.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/nptl_db/td_ta_clear_event.c b/nptl_db/td_ta_clear_event.c index d45d75ba83..99fa63c734 100644 --- a/nptl_db/td_ta_clear_event.c +++ b/nptl_db/td_ta_clear_event.c @@ -1,5 +1,5 @@ /* Globally disable events. - Copyright (C) 1999, 2001, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1999, 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. @@ -28,7 +28,7 @@ td_ta_clear_event (ta_arg, event) { td_thragent_t *const ta = (td_thragent_t *) ta_arg; td_err_e err; - psaddr_t eventmask; + psaddr_t eventmask = 0; void *copy; LOG ("td_ta_clear_event"); diff --git a/nptl_db/td_ta_set_event.c b/nptl_db/td_ta_set_event.c index 4fcc934a6b..5d64e4d269 100644 --- a/nptl_db/td_ta_set_event.c +++ b/nptl_db/td_ta_set_event.c @@ -1,5 +1,5 @@ /* Globally enable events. - Copyright (C) 1999,2001,2002,2003 Free Software Foundation, Inc. + Copyright (C) 1999,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. @@ -28,7 +28,7 @@ td_ta_set_event (ta_arg, event) { td_thragent_t *const ta = (td_thragent_t *) ta_arg; td_err_e err; - psaddr_t eventmask; + psaddr_t eventmask = 0; void *copy; LOG ("td_ta_set_event"); 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"); |