Dmitry Timoshkov (@dmitry) commented about dlls/urlmon/tests/sec_mgr.c:
ok(hres == S_OK, "Unexpected Remove result: 0x%08lx, expected result: 0x%08lx\n", hres, S_OK);
- ok(GetTempPathW(sizeof(tmp_dir), tmp_dir),
- ok(GetTempPathW(sizeof(tmp_dir), ARRAY_SIZE(tmp_dir)),
Shouldn't this be 'GetTempPathW(ARRAY_SIZE(tmp_dir), tmp_dir);'?