Date: Wed, 21 Aug 2002 07:57:27 +0930 From: Ian West <ian@niw.com.au> To: freebsd-stable@freebsd.org Subject: Malloc backwards compat problem in stable as of yesterday ? Message-ID: <20020820222727.GC407@axiom.niw.com.au>
next in thread | raw e-mail | index | archive | help
The following program when compiled on a box cvs updated to RELENG_4 late yesterday (about 8 hours ago) works fine on the box itself, but the dynamic binary fails (returns 0) when run on a box running RELENG_4 from about a week ago. Is this a known and expected issue ? #include <stdlib.h> #include <stdio.h> int main(int argc, char **argv){ char *temp=(char *)malloc(24); printf("temp=%p\n",temp); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020820222727.GC407>