diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-11-03 08:07:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-11-03 08:07:39 +0000 |
commit | 486bdb886330a250af76cbb12af55d2c67ec0981 (patch) | |
tree | f511a942b90bf2216c123f4de8e1d5b4afbe1a65 | |
parent | efac1fce6212f0e471ce7fa2519b1d3a4a084ddc (diff) | |
download | glibc-486bdb886330a250af76cbb12af55d2c67ec0981.zip glibc-486bdb886330a250af76cbb12af55d2c67ec0981.tar.gz glibc-486bdb886330a250af76cbb12af55d2c67ec0981.tar.bz2 |
* malloc/malloc.c (public_rEALLOc): When new arena is used, copy
really all bytes. Patch by Denys Vlasenko <dvlasenk@redhat.com>.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | malloc/malloc.c | 2 | ||||
-rw-r--r-- | sunrpc/rpc_main.c | 6 |
3 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2008-11-02 Ulrich Drepper <drepper@redhat.com> + + * malloc/malloc.c (public_rEALLOc): When new arena is used, copy + really all bytes. Patch by Denys Vlasenko <dvlasenk@redhat.com>. + 2008-11-01 Ulrich Drepper <drepper@redhat.com> [BZ #6966] diff --git a/malloc/malloc.c b/malloc/malloc.c index feca2cb..d6102a4 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -3717,7 +3717,7 @@ public_rEALLOc(Void_t* oldmem, size_t bytes) newp = public_mALLOc(bytes); if (newp != NULL) { - MALLOC_COPY (newp, oldmem, oldsize - 2 * SIZE_SZ); + MALLOC_COPY (newp, oldmem, oldsize - SIZE_SZ); #if THREAD_STATS if(!mutex_trylock(&ar_ptr->mutex)) ++(ar_ptr->stat_lock_direct); diff --git a/sunrpc/rpc_main.c b/sunrpc/rpc_main.c index bda432d..a3d227e 100644 --- a/sunrpc/rpc_main.c +++ b/sunrpc/rpc_main.c @@ -995,7 +995,11 @@ mkfile_output (struct commandline *cmd) abort (); temp = rindex (cmd->infile, '.'); cp = stpcpy (mkfilename, "Makefile."); - strncpy (cp, cmd->infile, (temp - cmd->infile)); + if (temp != NULL) + *((char *) stpncpy (cp, cmd->infile, temp - cmd->infile)) = '\0'; + else + stpcpy (cp, cmd->infile); + } else mkfilename = (char *) cmd->outfile; |