From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,6d4eecb82d078fd6 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!s20g2000vbp.googlegroups.com!not-for-mail From: mhamel_98@yahoo.com Newsgroups: comp.lang.ada Subject: Re: Exception_Access_Violation Date: Wed, 20 May 2009 08:30:18 -0700 (PDT) Organization: http://groups.google.com Message-ID: <669e505c-f111-47b9-8cc5-ca1815161c53@s20g2000vbp.googlegroups.com> References: <3f465d87-0fc9-415d-a60b-72a0d744dce1@h23g2000vbc.googlegroups.com> <77f52dF1gt12kU1@mid.individual.net> NNTP-Posting-Host: 208.12.121.254 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1242833418 30137 127.0.0.1 (20 May 2009 15:30:18 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 20 May 2009 15:30:18 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: s20g2000vbp.googlegroups.com; posting-host=208.12.121.254; posting-account=5z8IJQkAAAAuH1CVqapXiEqPOXq8UfDM User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10,gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:5962 Date: 2009-05-20T08:30:18-07:00 List-Id: Problem solved! Thanks for all the help, especially the pointer to Debug_Pools. The problem was that instead of allocating one node at a time, I was allocating an array of nodes at once. Deallocating nodes allocated from an array allocation is apparently bad juju. I don't understand it, but can work around it.