Cocoa application memory leak check
Cocoa application memory leak check
- Subject: Cocoa application memory leak check
- From: XiaoGang Li <email@hidden>
- Date: Mon, 27 Apr 2009 17:33:00 +0800
Hello, list
I try to check my Cocoa application memory leak issue using Instruments.
here I have a question here:
for example:
if(conditions == true){
void *buffer1 = malloc(32);
buffer1 = NULL;
} else {
void *buffer2 = malloc(32);
buffer2 = NULL;
}
the Instruments (leaks) can not find out the buffer2 leak, because this part
is not executed. So, how to check this kind of memory leak? Thanks.
Xiaogang
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden