diff options
author | hobbs <hobbs> | 2007-07-04 18:10:52 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2007-07-04 18:10:52 (GMT) |
commit | 8c08129bc61f7b99269fd3b9a73a8cc4e14b40d5 (patch) | |
tree | f28fbff019c67d2190c749a6bcb811b07822b5d8 /macosx | |
parent | 1f49c248b2b1f9f7efbeb6ebcc139bf7fcd659e3 (diff) | |
download | tk-8c08129bc61f7b99269fd3b9a73a8cc4e14b40d5.zip tk-8c08129bc61f7b99269fd3b9a73a8cc4e14b40d5.tar.gz tk-8c08129bc61f7b99269fd3b9a73a8cc4e14b40d5.tar.bz2 |
* macosx/tkMacOSXXStubs.c (DestroyImage): Fixed crash in release
of image data for images coming from XGetImage, introduced
2007-06-23. (das)
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXXStubs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/macosx/tkMacOSXXStubs.c b/macosx/tkMacOSXXStubs.c index 726bfc8..1232a01 100644 --- a/macosx/tkMacOSXXStubs.c +++ b/macosx/tkMacOSXXStubs.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.2.2.18 2007/06/29 03:22:03 das Exp $ + * RCS: @(#) $Id: tkMacOSXXStubs.c,v 1.2.2.19 2007/07/04 18:10:52 hobbs Exp $ */ #include "tkMacOSXPrivate.h" @@ -938,8 +938,7 @@ DestroyImage( if (image) { if (image->obdata) { Tk_FreePixmap((Display*) gMacDisplay, (Pixmap) image->obdata); - } - if (image->data) { + } else if (image->data) { ckfree(image->data); } ckfree((char*) image); |