summaryrefslogtreecommitdiffstats
path: root/win/tkWinImage.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2003-07-17 01:02:47 (GMT)
committerhobbs <hobbs>2003-07-17 01:02:47 (GMT)
commit3590129389e4d87590157122693d4ad89cdadc41 (patch)
tree42c291d7b060550fc483b0fca17806321d918db1 /win/tkWinImage.c
parentf3065b5641a236c48af7dcdcf8e138b72356de98 (diff)
downloadtk-3590129389e4d87590157122693d4ad89cdadc41.zip
tk-3590129389e4d87590157122693d4ad89cdadc41.tar.gz
tk-3590129389e4d87590157122693d4ad89cdadc41.tar.bz2
* win/tkWinImage.c (XGetImage): correct init of biSizeImage in
bitmap header. [Bug 703697] (cap)
Diffstat (limited to 'win/tkWinImage.c')
-rw-r--r--win/tkWinImage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinImage.c b/win/tkWinImage.c
index 7ba9329..bb20a88 100644
--- a/win/tkWinImage.c
+++ b/win/tkWinImage.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkWinImage.c,v 1.6 2002/10/10 21:01:18 hobbs Exp $
+ * RCS: @(#) $Id: tkWinImage.c,v 1.6.2.1 2003/07/17 01:02:47 hobbs Exp $
*/
#include "tkWinInt.h"
@@ -621,7 +621,7 @@ XGetImage(display, d, x, y, width, height, plane_mask, format)
infoPtr->bmiHeader.biPlanes = 1;
infoPtr->bmiHeader.biBitCount = 1;
infoPtr->bmiHeader.biCompression = BI_RGB;
- infoPtr->bmiHeader.biCompression = 0;
+ infoPtr->bmiHeader.biSizeImage = 0;
infoPtr->bmiHeader.biXPelsPerMeter = 0;
infoPtr->bmiHeader.biYPelsPerMeter = 0;
infoPtr->bmiHeader.biClrUsed = 0;