summaryrefslogtreecommitdiff
path: root/nptl_db
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-04-04 06:17:27 +0000
committerUlrich Drepper <drepper@redhat.com>2004-04-04 06:17:27 +0000
commit5da3d377184465497da472ad71a26a578fe6a5dd (patch)
tree96d45aede6cb95d7f9ad77bbf03468bbb0c1fde5 /nptl_db
parent4e73e1151d457981323a7316861a2493a57dbc6c (diff)
Update.
* sysdeps/powerpc/powerpc64/ffsll.c: New file. * sysdeps/powerpc/elf/libc-start.c: No need for a separate
Diffstat (limited to 'nptl_db')
-rw-r--r--nptl_db/ChangeLog3
-rw-r--r--nptl_db/td_ta_set_event.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/nptl_db/ChangeLog b/nptl_db/ChangeLog
index 31a429fa45..517e961874 100644
--- a/nptl_db/ChangeLog
+++ b/nptl_db/ChangeLog
@@ -1,5 +1,8 @@
2004-04-03 Ulrich Drepper <drepper@redhat.com>
+ * td_ta_set_event.c (td_ta_set_event): Initialize copy to avoid
+ warnings.
+
* td_ta_thr_iter.c (td_ta_thr_iter): Initialize list to avoid warning.
* td_ta_clear_event.c (td_ta_clear_event): Initialize eventmask to
avoid warning.
diff --git a/nptl_db/td_ta_set_event.c b/nptl_db/td_ta_set_event.c
index 5d64e4d269..29fc14bfb3 100644
--- a/nptl_db/td_ta_set_event.c
+++ b/nptl_db/td_ta_set_event.c
@@ -29,7 +29,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 = 0;
- void *copy;
+ void *copy = NULL;
LOG ("td_ta_set_event");