Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 8 Oct 1998 17:00:12 +0000 (17:00 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 8 Oct 1998 17:00:12 +0000 (17:00 +0000)
* malloc/mtrace.c (tr_reallochook): Produce better output for real
reallocation case.

ChangeLog
malloc/mtrace.c

index c2fbad4..e884712 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1998-10-08  Ulrich Drepper  <drepper@cygnus.com>
 
+       * malloc/mtrace.c (tr_reallochook): Produce better output for real
+       reallocation case.
+
        * signal/sigsetops.c: Make sure __USE_EXTERN_INLINES is defined.
 
        * sysdeps/unix/sysv/linux/alpha/ioperm.c (platform): Add missing
index 02da0ae..ec551ff 100644 (file)
@@ -204,8 +204,11 @@ tr_reallochook (ptr, size, caller)
   else if (ptr == NULL)
     fprintf (mallstream, "+ %p %#lx\n", hdr, (unsigned long int) size);
   else
-    fprintf (mallstream, "< %p\n> %p %#lx\n", ptr, hdr,
-            (unsigned long int) size);
+    {
+      fprintf (mallstream, "< %p\n", ptr);
+      tr_where (caller);
+      fprintf (mallstream, "> %p %#lx\n", hdr, (unsigned long int) size);
+    }
 
   if (hdr == mallwatch)
     tr_break ();