# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1303447906 0 # Node ID 6b400a0f5f70c8df50b4cb5565f7cc003cbd6a90 # Parent 8567c9ac089d7c4fdb07cad7e613ceb7d686c14e Revering the dw_pixmap_destroy() dealloc/release change on the Mac. Need to figure out why it is leaking. diff -r 8567c9ac089d -r 6b400a0f5f70 mac/dw.m --- a/mac/dw.m Fri Apr 22 04:23:00 2011 +0000 +++ b/mac/dw.m Fri Apr 22 04:51:46 2011 +0000 @@ -5995,7 +5995,7 @@ void API dw_pixmap_destroy(HPIXMAP pixmap) { NSBitmapImageRep *image = (NSBitmapImageRep *)pixmap->image; - [image dealloc]; + [image release]; free(pixmap); }