mirror of
https://github.com/reactos/wine.git
synced 2024-12-03 17:31:15 +00:00
comctl32/tests: Avoid testing uninitialized value (Valgrind).
This commit is contained in:
parent
56999940a3
commit
055129485d
@ -743,10 +743,10 @@ todo_wine
|
|||||||
ok(lstrcmpW(nameW, WC_BUTTONW), "got %s\n", wine_dbgstr_w(nameW));
|
ok(lstrcmpW(nameW, WC_BUTTONW), "got %s\n", wine_dbgstr_w(nameW));
|
||||||
|
|
||||||
ret = GetClassInfoExW(NULL, nameW, &ex2W);
|
ret = GetClassInfoExW(NULL, nameW, &ex2W);
|
||||||
todo_wine {
|
todo_wine
|
||||||
ok(ret, "got %d\n", ret);
|
ok(ret, "got %d\n", ret);
|
||||||
|
if (ret) /* TODO: remove once Wine is fixed */
|
||||||
ok(ex2W.lpfnWndProc == exW.lpfnWndProc, "got %p, %p\n", exW.lpfnWndProc, ex2W.lpfnWndProc);
|
ok(ex2W.lpfnWndProc == exW.lpfnWndProc, "got %p, %p\n", exW.lpfnWndProc, ex2W.lpfnWndProc);
|
||||||
}
|
|
||||||
|
|
||||||
/* Check reported class name */
|
/* Check reported class name */
|
||||||
hwnd = create_button(BS_CHECKBOX, NULL);
|
hwnd = create_button(BS_CHECKBOX, NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user