mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 12:20:07 +00:00
gdi32: Make sure that pattern info is initialized before being used.
This commit is contained in:
parent
40bda4a030
commit
c8d61899db
@ -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))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user