Date: Tue, 8 Dec 1998 12:20:41 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Rob Kramer cc: djgpp AT delorie DOT com Subject: Re: v2.02 malloc/free problem? Or silly me? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Tue, 8 Dec 1998, Rob Kramer wrote: > I tried installing the new version 2.02, but seem to have weird > malloc/free problems. This is most probably a subtle bug in your program that went unnoticed in v2.01. The new malloc doesn't keep slack space beyond the end of the allocated buffer, so programs which overrun the allocated storage run much higher risk of destroying the chain of pointers maintained by malloc and free. In general, I expect many similar bugs to be revealed by upgrading to v2.02. > Back to 2.01 for now :( I would rather suggest to debug your program ;-).