21 Aug
2023
21 Aug
'23
6:08 p.m.
Bartosz Kosiorek (@gang65) commented about dlls/gdiplus/tests/image.c:
/* color icon 1 bit */ hbmMask = CreateBitmap(16, 16, 1, 1, bmp_bits); ok(hbmMask != 0, "CreateBitmap failed\n"); hbmColor = CreateBitmap(16, 16, 1, 1, bmp_bits);
`bmp_bits` is never initialized, which usually means it is filled with zeros. I would recommend to use different values for mask and for Color, to have more real life scenario. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3621#note_42888