summaryrefslogtreecommitdiffstats
path: root/win/tkWinDraw.c
diff options
context:
space:
mode:
authorchengyemao <chengyemao>2001-12-07 00:02:57 (GMT)
committerchengyemao <chengyemao>2001-12-07 00:02:57 (GMT)
commit5391e66099bb89cd94887cbfa902ab96732b58f1 (patch)
tree446e317273e3715dd93534ec96b6aa7b637fd28f /win/tkWinDraw.c
parentb7bbedf86ce0a3f6ffcad02a2baeba7b029dc749 (diff)
downloadtk-5391e66099bb89cd94887cbfa902ab96732b58f1.zip
tk-5391e66099bb89cd94887cbfa902ab96732b58f1.tar.gz
tk-5391e66099bb89cd94887cbfa902ab96732b58f1.tar.bz2
Added panic to TkPutImage in case of failure to allocate bitmap
Diffstat (limited to 'win/tkWinDraw.c')
-rw-r--r--win/tkWinDraw.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/win/tkWinDraw.c b/win/tkWinDraw.c
index 5b09693..eeaf334 100644
--- a/win/tkWinDraw.c
+++ b/win/tkWinDraw.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinDraw.c,v 1.9 2000/10/24 23:51:33 ericm Exp $
+ * RCS: @(#) $Id: tkWinDraw.c,v 1.10 2001/12/07 00:02:57 chengyemao Exp $
*/
#include "tkWinInt.h"
@@ -589,6 +589,10 @@ TkPutImage(colors, ncolors, display, d, gc, image, src_x, src_y, dest_x,
image->data, infoPtr, DIB_RGB_COLORS);
ckfree((char *) infoPtr);
}
+ if(!bitmap) {
+ panic("Fail to allocate bitmap\n");
+ return
+ }
bitmap = SelectObject(dcMem, bitmap);
BitBlt(dc, dest_x, dest_y, width, height, dcMem, src_x, src_y, SRCCOPY);
DeleteObject(SelectObject(dcMem, bitmap));