vote up 0 vote down star

Hello,

I have the following code that leaks. Instruments says that it is the rssParser object that is leaking. I "refresh" the XML feed and it runs the block and it leaks....

file.h

@interface TestAppDelegate : NSObject <UIApplicationDelegate> {

    NSXMLParser *rssParser;

}

file.m

NSData *data = [ NSURLConnection sendSynchronousRequest:request returningResponse: nil error: nil ];
    rssParser = [[NSXMLParser alloc] initWithData:data];
    [rssParser setDelegate:self];
    [rssParser setShouldProcessNamespaces:NO];
    [rssParser setShouldReportNamespacePrefixes:NO];
    [rssParser setShouldResolveExternalEntities:NO];
    [rssParser parse];
    [rssParser release];

Image of leak....

alt text

flag

79% accept rate
Note that the three setShould* statements all default to NO already so you can drop those from your code. – Epsilon Prime Oct 21 at 17:34

3 Answers

vote up 0 vote down

How did you declare rssParser? Is it just a pointer or is it a property? If its a property, how is it declared?

link|flag
Only other reference I have in my code is in the .h. No properties set or synthesize. @interface TestAppDelegate : NSObject <UIApplicationDelegate> { NSXMLParser *rssParser; } – Lee Armstrong Oct 21 at 6:39
To your screenshot, you should release first and then set to nil. Thats leaking definitly – caahab Oct 22 at 6:49
Your TestAppDelegate should also inherit from the NSXMLParserDelegate protocol. If this class handles the events from the parser. – caahab Oct 22 at 6:50
vote up 1 vote down

The most likely cause is that one of your delegate methods retains the parser. Do you do anything with your parser parameter in the delegate methods?

Do you get a leak every time you refresh?

If this is the only place that rssParser is used, why are you making it an ivar? If you do need an ivar, I cannot stress enough how important it is to always use accessors for them and never access them directly. The single best way to avoid memory leaks is to use accessors for your ivars.

Also, never release something without immediately setting it to something else (usually nil). Your release of rssParser above is a crash waiting to happen because you now have a pointer to potentially unallocated memory.

link|flag
Yes I do get a leak every time, I have made the changes you describe as yes it shouldn't be an ivar! Still leaky! – Lee Armstrong Oct 21 at 19:17
Do you have Xcode 3.2 (from SnowLeopard)? The Build and Analyze tool is very good at finding simple leaks. – Rob Napier Oct 22 at 0:13
Yeah I already tried that. – Lee Armstrong Oct 22 at 3:12
Have added a screenshot of instruments.... – Lee Armstrong Oct 22 at 4:18
Poking around the boards, this may be a caching issue with either NSURLConnection or NSXMLParser. You may want to open a radar on this. Google "nsxmlparser leak". iphonedevsdk.com/forum/iphone-sdk-development/… stackoverflow.com/questions/555623/… – Rob Napier Oct 22 at 13:31
show 2 more comments
vote up 0 vote down

Seems this is a well know problem. See here NSURLConnection leaking. However if you set the following before initializing the parser leaking stops:

[[NSURLCache sharedURLCache] setMemoryCapacity:0];
[[NSURLCache sharedURLCache] setDiskCapacity:0];
NSXMLParser *parser = [[NSXMLParser alloc]initWithContentsOfURL:URL];
link|flag
Actually Apple got back to me and this issue is already logged as 6469143. Not sure when they will fix it though. Still leaks changing to your way of doing it too! – Lee Armstrong Nov 11 at 13:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.