mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 16:32:57 +00:00
[COMCTL32_IMAGELIST] Prevent dereferencing a null pointer.
svn path=/trunk/; revision=74998
This commit is contained in:
parent
182d125bc0
commit
2366903f94
1 changed files with 2 additions and 2 deletions
|
@ -2046,9 +2046,9 @@ static void check_color_table(const char *name, HDC hdc, HIMAGELIST himl, UINT i
|
||||||
ok((bmi->bmiColors[i].rgbRed == expect[i].rgbRed &&
|
ok((bmi->bmiColors[i].rgbRed == expect[i].rgbRed &&
|
||||||
bmi->bmiColors[i].rgbGreen == expect[i].rgbGreen &&
|
bmi->bmiColors[i].rgbGreen == expect[i].rgbGreen &&
|
||||||
bmi->bmiColors[i].rgbBlue == expect[i].rgbBlue) ||
|
bmi->bmiColors[i].rgbBlue == expect[i].rgbBlue) ||
|
||||||
broken(bmi->bmiColors[i].rgbRed == broken_expect[i].rgbRed &&
|
(broken_expect && broken(bmi->bmiColors[i].rgbRed == broken_expect[i].rgbRed &&
|
||||||
bmi->bmiColors[i].rgbGreen == broken_expect[i].rgbGreen &&
|
bmi->bmiColors[i].rgbGreen == broken_expect[i].rgbGreen &&
|
||||||
bmi->bmiColors[i].rgbBlue == broken_expect[i].rgbBlue),
|
bmi->bmiColors[i].rgbBlue == broken_expect[i].rgbBlue)),
|
||||||
"%d: %s: got color[%d] %02x %02x %02x expect %02x %02x %02x\n", depth, name, i,
|
"%d: %s: got color[%d] %02x %02x %02x expect %02x %02x %02x\n", depth, name, i,
|
||||||
bmi->bmiColors[i].rgbRed, bmi->bmiColors[i].rgbGreen, bmi->bmiColors[i].rgbBlue,
|
bmi->bmiColors[i].rgbRed, bmi->bmiColors[i].rgbGreen, bmi->bmiColors[i].rgbBlue,
|
||||||
expect[i].rgbRed, expect[i].rgbGreen, expect[i].rgbBlue);
|
expect[i].rgbRed, expect[i].rgbGreen, expect[i].rgbBlue);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue