From: Ulrich Drepper Date: Thu, 16 Oct 2008 21:45:59 +0000 (+0000) Subject: (_dl_update_slotinfo): Copy all of the initial DTV. X-Git-Tag: upstream/2.30~14005 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb862ace67c15975e2df3f572961b2bd72b2cfbd;p=external%2Fglibc.git (_dl_update_slotinfo): Copy all of the initial DTV. --- diff --git a/elf/dl-tls.c b/elf/dl-tls.c index 54c3590..edbc953 100644 --- a/elf/dl-tls.c +++ b/elf/dl-tls.c @@ -634,7 +634,7 @@ _dl_update_slotinfo (unsigned long int req_modid) newp = malloc ((2 + newsize) * sizeof (dtv_t)); if (newp == NULL) oom (); - memcpy (newp, &dtv[-1], oldsize * sizeof (dtv_t)); + memcpy (newp, &dtv[-1], (2 * oldsize) * sizeof (dtv_t)); } else {