Commit 536876af authored by Greg Geldorp's avatar Greg Geldorp Committed by Alexandre Julliard

msi/tests: Fix some failures on Wow64.

parent 148b38d9
......@@ -3428,6 +3428,8 @@ static void test_publish(void)
else
{
res = RegOpenKeyExA(uninstall, prodcode, 0, access, &prodkey);
if (is_wow64 && res == ERROR_FILE_NOT_FOUND) /* XP - Vista, Wow64 */
res = RegOpenKeyExA(uninstall, prodcode, 0, KEY_ALL_ACCESS, &prodkey);
ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment