by Howard Hinnant <hinnant@[EMAIL PROTECTED]
>
Feb 7, 2005 at 12:47 PM
In article
<d47241f6744cfbca08ae0578687b96a4@[EMAIL PROTECTED]
>,
"killfuzzys" <chris.chikes@[EMAIL PROTECTED]
> wrote:
> I've noticed that CodeWarrior automatically will free memory for you if
you
> forget. Example:
> freeing a node in a linked list will automatically free any dynamically
> allocated data in that node.
>
> This is becoming a problem for me as I am a beginning programmer(still
> working on my undergrad). When I run my programs on MS Visual C++ at
> school, memory leaks then show themselves.
>
> I know that there must be some way to disable this feature. If anyone
out
> there knows how, it would be wonderful if you could tell me (or, at
least,
> point me in the right direction.
Actually CodeWarrior does not do automatic memory freeing.
I believe you are asking for a memory leak detector. There are several
around. You are welcome to try mine:
http://home.twcny.rr.com/hinnant/MemoryManager/
-Howard