help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

My earlier message about core dump


From: PATTON, BILLY \(SBCSI\)
Subject: My earlier message about core dump
Date: Fri, 17 Mar 2006 06:39:53 -0600

Also forgot to attach my Makefile to earlier post

I've done some tracing in the source of 3.8.0

expand.c:67
      variable_buffer = (char *) xrealloc (variable_buffer,
                                           variable_buffer_length);



misc.c:384
char *
xrealloc (ptr, size)
     char *ptr;
     unsigned int size;
{
  char *result;

  /* Some older implementations of realloc() don't conform to ANSI.  */
  result = ptr ? realloc (ptr, size) : malloc (size);  <<<<<<<< 384
  if (result == 0)
    fatal (NILF, _("virtual memory exhausted"));
  return result;
}


size=4294965501
ptr=0x40018f78 "build+ldb :  build+ldb+inftp build+ldb+opi
build+ldb+schapi build+ldb+tuxapi build+ldb+ldngn build+ldb+infgn
build+ldb+ldgn build+ldb+ld" <Address 0x40019000 out of bounds>


Attachment: XXX
Description: XXX


reply via email to

[Prev in Thread] Current Thread [Next in Thread]