diff options
author | hobbs <hobbs> | 2003-07-17 01:02:32 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-07-17 01:02:32 (GMT) |
commit | e9e3e8e75abb2d1673c608fe445aa8f862e57196 (patch) | |
tree | d43b293bf2b0ce41482cef7d8212b2a0df84efe4 /win | |
parent | 90c5fc87e6d93ff8788adee1e3ffdbe9c37bbf28 (diff) | |
download | tk-e9e3e8e75abb2d1673c608fe445aa8f862e57196.zip tk-e9e3e8e75abb2d1673c608fe445aa8f862e57196.tar.gz tk-e9e3e8e75abb2d1673c608fe445aa8f862e57196.tar.bz2 |
* win/tkWinImage.c (XGetImage): correct init of biSizeImage in
bitmap header. [Bug 703697] (cap)
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinImage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinImage.c b/win/tkWinImage.c index 7ba9329..49e2d7a 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.7 2003/07/17 01:02:32 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; |