diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-11-08 03:31:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-11-08 03:31:41 +0000 |
commit | 909aec10fe871c86655e4f0452e2479f9240e4f4 (patch) | |
tree | befc74b6a53938ab2854210d61f32722c8bf0f87 /libpthread/linuxthreads_db/td_ta_new.c | |
parent | 139ea40709b94e0869d4cf7f12fe56656980f163 (diff) |
A patch included in glibc 2.3.2's libthread_db that helps remote
debugging not become confused,
Diffstat (limited to 'libpthread/linuxthreads_db/td_ta_new.c')
-rw-r--r-- | libpthread/linuxthreads_db/td_ta_new.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpthread/linuxthreads_db/td_ta_new.c b/libpthread/linuxthreads_db/td_ta_new.c index f19798b71..9bf926719 100644 --- a/libpthread/linuxthreads_db/td_ta_new.c +++ b/libpthread/linuxthreads_db/td_ta_new.c @@ -126,6 +126,10 @@ td_ta_new (struct ps_prochandle *ps, td_thragent_t **ta) { if (ps_pdread (ps, addr, &(*ta)->sizeof_descr, sizeof (int)) != PS_OK) goto free_return; + /* Don't let bogons in the inferior make us mess ourselves. */ + if ((*ta)->sizeof_descr > sizeof (struct _pthread_descr_struct)) + (*ta)->sizeof_descr = sizeof (struct _pthread_descr_struct); + } /* Now add the new agent descriptor to the list. */ |