gdi32: Make sure that pattern info is initialized before being used.

Dmitry Timoshkov dmitry at baikal.ru
Fri Aug 17 12:09:17 CDT 2012


---
 dlls/gdi32/dibdrv/objects.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/gdi32/dibdrv/objects.c b/dlls/gdi32/dibdrv/objects.c
index 4712dc1..98bbb91 100644
--- a/dlls/gdi32/dibdrv/objects.c
+++ b/dlls/gdi32/dibdrv/objects.c
@@ -1897,9 +1897,6 @@ static BOOL select_pattern_brush( dibdrv_physdev *pdev, dib_brush *brush, BOOL *
     dib_info pattern;
     BOOL dither = (brush->dib.bit_count == 1);
 
-    if (pattern.bit_count == 1 && !pattern.color_table)
-        dither = FALSE;  /* monochrome DDB pattern brushes don't get dithered */
-
     if (brush->pattern.info->bmiHeader.biClrUsed && brush->pattern.usage == DIB_PAL_COLORS)
     {
         copy_bitmapinfo( info, brush->pattern.info );
@@ -1912,6 +1909,9 @@ static BOOL select_pattern_brush( dibdrv_physdev *pdev, dib_brush *brush, BOOL *
         init_dib_info_from_bitmapinfo( &pattern, brush->pattern.info, brush->pattern.bits.ptr );
     }
 
+    if (pattern.bit_count == 1 && !pattern.color_table)
+        dither = FALSE;  /* monochrome DDB pattern brushes don't get dithered */
+
     if (pattern.bit_count == 1 && !pattern.color_table &&
         (pdev->dib.bit_count != 1 || pdev->dib.color_table))
     {
-- 
1.7.11.5




More information about the wine-patches mailing list