vote up 0 vote down star

I am getting following type of memory leak in my application - instruments checking. I have properly allocated & deallocated every object. However i am getting this type of memory leak.

std::_Deque_base<__CFURLCacheNode*, std::allocator<__CFURLCacheNode*> >::_M_allocate_node()

What is the reason behind generating these kind of leak?

Why this memory leak is occurred?

Images : -

alt text

alt text

alt text

alt text

flag

2 Answers

vote up 1 vote down check

Are you profiling on the phone or on the simulator?

I've heard there are memory leaks in the NSURLConnection class when on the simulator.

from http://www.iphonedevforums.com/forum/general-development-questions-advice/1086-memory-leaks.html

The NSURLConnection class itself has a leak in the sendSynchronousRequest method in OS 2.x. It's an issue that Apple is fully aware of.

link|flag
vote up 0 vote down

Implement following code in your appDidFinishL. function

there will no leak

- (void)applicationDidFinishLaunching:(UIApplication *)application {    

// Override point for customization after app launch    
NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:nil];
[NSURLCache setSharedURLCache:sharedCache];
[sharedCache release];

[window addSubview:[navigationController view]];
[window makeKeyAndVisible];

}

link|flag

Your Answer

Get an OpenID
or

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