26 Jul
2024
26 Jul
'24
8:01 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/tests/propsheet.c:
+ + return FALSE; + +} + +static void test_QueryInitialFocus(void) +{ + PROPSHEETPAGEA psp[2]; + PROPSHEETHEADERA psh; + HWND tab_ctrl = NULL; + HWND hp; + RECT rc; + LPARAM lp; + + memset(&psh, 0, sizeof(psh)); + memset(psp, 0, sizeof(psp[0]) * 2); You can juse use memset(psp, 0, sizeof(psp));
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6145#note_77111