vote up 0 vote down star

Further to this question I've fixed a bunch of memory leaks in BEncoding.m (originally from here)

I've fixed all the obvious memory leaks, but Clang has found four "Leak of returned object" bugs, which I'm not sure how to sort:

The full messages/appropriate bits of code are:

NSMutableData *data = [[NSMutableData alloc] init];

[1] Method returns an Objective-C object with a +1 retain count (owning reference)

[...]
snprintf(buffer, 32, "%lu:", [object length]);
[data appendBytes:buffer length:strlen(buffer)];
[data appendData:object];
return data;

[3] Object returned to caller as an owning reference (single retain count transferred to caller)

flag

2 Answers

vote up 2 vote down check

you want:

return [data autorelease];

since you're handing it to the caller.

link|flag
vote up 1 vote down

It sounds like the objects aren't being properly autoreleased before they're returned, which violates the Objective-C memory management conventions.

link|flag

Your Answer

Get an OpenID
or

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