views:

212

answers:

1

Hello,

I have been solving a lot of memory leaks but have been unsuccessful in solving this one. There are tons of NSCF memory leaks coming due to [NSCFString substringWithRange:]. I have been checking all the String allocations and have released all of them at appropriate places. The responsible library: Foundation.

Has anyone encountered this problem before? Can anyone suggest me as how I should takle this issue?

Thanks,

Lakshmie

A: 

General Block-3584 just means a malloc of 3584 bytes. It is not itself a component of any framework. Regardless, judging from info on the web, it appears to be a CFNetwork issue and its not entirely clear that it's a leak -- just that the Leaks tool thinks its a leak. In any case, this one probably isn't your fault and you can ignore it. - Matt

Lakshmie