vote up 1 vote down star

I have a calling method that looks like the following:

-(void)callingMethod
{
     NSMutableString *myStr = [[[NSMutableString alloc] initWithCapacity:0] autorelease];
     myStr = [self calledMethod];
}

And my called method:

-(NSMutableString*)calledMethod
{
    NSMutableString *newStr = [[NSMutableString alloc] initWithCapacity:0];
    // do some stuff with newStr
    return [newStr autorelease];
}

Am I leaking memory anywhere here? I feel like I'm allocing an unnecessary amount here.

flag

63% accept rate
Oops, calledMethod should return NSMutableString* or NSString* or id. – Don McCaughey Apr 6 '09 at 20:10

1 Answer

vote up 6 vote down check

No, you're not leaking memory, but your instinct that you are allocing an unnecessary amount here is correct.

At a minimum, you should consider rewriting the callingMethod as:

- (void)callingMethod
{
    NSMutableString *myStr = [self calledMethod];
}

You can also tidy up the calledMethod as:

- (NSMutableString*)calledMethod
{
    return [NSMutableString stringWithCapacity:0]; // why 0 capacity?
}
link|flag
HAHAHAHA... thanks for the edit Jason. Monkey see void, monkey copy void :-) – Jarret Hardie Apr 6 '09 at 20:15
He is not releasing myStr in callingMethod. Is that not a memory leak ? – euphoria83 Apr 6 '09 at 20:16
Good question... no, it's not since myStr is autoreleased because it was created using the [NSMutableString stringWithCapacity] call (as opposed to with [[NSMutableString alloc] init]) – Jarret Hardie Apr 6 '09 at 20:18
@euphoria: he doesn't have to... he doesn't own it. If he wants to use it outside the scope of callingMethod he'll have to take ownership of it by retaining it or copying it. At that point, he will have to release it at some later point to avoid a memory leak. – Jason Coco Apr 6 '09 at 20:19
And in his original example, it was deliberately autoreleased, so no worries there either. – Jarret Hardie Apr 6 '09 at 20:19
show 3 more comments

Your Answer

Get an OpenID
or
never shown

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