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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,80bc3e0698be468f X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!g47g2000cwa.googlegroups.com!not-for-mail From: "Martin Krischik" Newsgroups: comp.lang.ada Subject: Re: Type safety on wikipedia Date: 27 Jan 2006 03:57:15 -0800 Organization: http://groups.google.com Message-ID: <1138363035.664717.262330@g47g2000cwa.googlegroups.com> References: <1138260496.230283.147640@g43g2000cwa.googlegroups.com> <43D8B95E.80001@mailinator.com> <43DA0083.9090702@mailinator.com> NNTP-Posting-Host: 138.189.120.38 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1138363040 26350 127.0.0.1 (27 Jan 2006 11:57:20 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 27 Jan 2006 11:57:20 +0000 (UTC) In-Reply-To: <43DA0083.9090702@mailinator.com> User-Agent: G2/0.2 X-HTTP-UserAgent: Opera/8.51 (Windows NT 5.0; U; de),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: g47g2000cwa.googlegroups.com; posting-host=138.189.120.38; posting-account=2-0LkQwAAAAQMhPSoYwlMiUmi-6lYh44 Xref: g2news1.google.com comp.lang.ada:2675 Date: 2006-01-27T03:57:15-08:00 List-Id: You can manualy free memory - provided all pointers pointing to the freed memory are set to null at the same time. And access to a null pointer is handled in orderly manner. This could be implemented by using a linked list of smart pointers. GC is only one option open. Martin