29 Oct
2025
29 Oct
'25
8:15 a.m.
Nikolay Sivov (@nsivov) commented about dlls/msi/tests/custom.c:
MsiCloseHandle(db); }
+static void test_open_msi(MSIHANDLE hinst) +{ + MSIHANDLE handle = 0; + UINT result; + char buffer[300]; + DWORD len = sizeof(buffer); + + result = MsiGetPropertyA(hinst, "DATABASE", buffer, &len); + ok(hinst, result == 0, "Failed: %x\n", result);
Why do you need a comma operator here? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6760#note_119946