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

_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to