Re: NSImage TIFFRepresentation memory leak
Re: NSImage TIFFRepresentation memory leak
- Subject: Re: NSImage TIFFRepresentation memory leak
- From: j o a r <email@hidden>
- Date: Wed, 29 Nov 2006 21:39:26 +0100
On 29 nov 2006, at 21.25, Roland Torres wrote:
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[anImage lockFocus];
NSData *nsData = [anImage TIFFRepresentation]; // <-- Leak City
[anImage unlockFocus];
[nsData writeToFile::]; // <-- No leak here
[pool release];
Why do you bracket the call to TIFFRepresentation inside calls to
lockFocus/unlockFocus?
Any ideas?
Check the memory management history for your tiff-data using
ObjectAlloc. That should tell you what's going on.
j o a r
Attachment:
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden