Followup on 82f7c0cc3b.
Seems above commit introduced a failure with [32-bit Windows 7](https://test.winehq.org/data/tests/comctl32:tab.html).
From: Bernhard Übelacker bernhardu@mailbox.org
Followup on 82f7c0cc3b. --- dlls/comctl32/tests/tab.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dlls/comctl32/tests/tab.c b/dlls/comctl32/tests/tab.c index 3e6a365ef80..933b4e0221a 100644 --- a/dlls/comctl32/tests/tab.c +++ b/dlls/comctl32/tests/tab.c @@ -1466,7 +1466,9 @@ static void test_TCS_OWNERDRAWFIXED(void) itemdata = 0; memset(&itemdata, 0xde, min(4, sizeof(LPARAM)-1)); todo_wine_if(sizeof(void *) == 4) - ok(g_drawitem.itemData == itemdata, "got 0x%Ix, expected 0x%Ix\n", g_drawitem.itemData, itemdata); + ok(g_drawitem.itemData == itemdata || + broken(sizeof(void *) == 4 && g_drawitem.itemData == 0xdededede), /* Win7-32-bit */ + "got 0x%Ix, expected 0x%Ix\n", g_drawitem.itemData, itemdata);
DestroyWindow(hTab); }
This merge request was approved by Zhiyi Zhang.
This merge request was approved by Nikolay Sivov.