Date: Mon, 25 Oct 1999 13:56:07 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: "sephiroth AT id-base DOT com" cc: djgpp AT delorie DOT com Subject: Re: delete C++ command. In-Reply-To: <38131F5D.9B84ECAD@id-base.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 24 Oct 1999, sephiroth AT id-base DOT com wrote: > Why does the delete function crash programs on rare occasions? I think > this happens when the delete is called at the end of the program. Usually, this happens either because some of your code writes beyond the end of memory allocated for some object, or deletes the same object more than once.