Commit fe8ecc23 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msi/tests: Add missing return value test (PVS-Studio).

parent 33809d2b
......@@ -5904,6 +5904,7 @@ static void test_publish_components(void)
res = RegCreateKeyExA(HKEY_LOCAL_MACHINE, keypath2, 0, NULL, REG_OPTION_NON_VOLATILE,
MAXIMUM_ALLOWED | KEY_WOW64_64KEY, NULL, &key, NULL );
ok(res == ERROR_SUCCESS, "RegCreateKeyEx failed %d\n", res);
res = RegSetValueExA(key, "english.txt", 0, REG_MULTI_SZ, data, size);
ok(res == ERROR_SUCCESS, "RegSetValueEx failed %d\n", res);
RegCloseKey(key);
......
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