Message-ID: <08da01c34c6b$be890bd0$0600000a@broadpark.no> From: "Gisle Vanem" To: References: <3F156434 DOT 3000508 AT psy DOT kuleuven DOT ac DOT be> <3F16A652 DOT 24B6FEA5 AT psy DOT kuleuven DOT ac DOT be> Subject: Re: malloc/free blues - for Peter Claessens Date: Thu, 17 Jul 2003 16:00:13 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Reply-To: djgpp AT delorie DOT com > New (sometimes other) problems after restarting the comp. Here's another > crash dump + x/i . He could set '_crt0_startup_flags' to provoke an earlier crash. Chances are he is trashing some structures internal to malloc. Use: #include int _crt0_startup_flags = _CRT0_FLAG_FILL_SBRK_MEMORY | _CRT0_FLAG_FILL_DEADBEEF; in the main module. --gv