From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu Subject: Re: [9fans] pico From: "Russ Cox" Date: Tue, 29 Jan 2008 17:46:24 -0500 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20080129224620.59CFA1E8C2B@holo.morphisms.net> Topicbox-Message-UUID: 3cae7d0c-ead3-11e9-9d60-3106f5b1d025 > I get something that ends in "(double-free?)" and then the program > crashes, but something like This usually means you have freed the same pointer twice or you are passing a pointer to free that was not returned by malloc. If you run acid to get a stack trace to see the context of the free, that is often enough to identify the problem. % acid pid acid: stk() ... ^D % Russ