[PATCH] msi/tests: Add missing return value test (PVS-Studio)

Nikolay Sivov nsivov at codeweavers.com
Tue Oct 27 14:55:37 CDT 2015


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/msi/tests/action.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/msi/tests/action.c b/dlls/msi/tests/action.c
index 05e3b1e..662ed4b 100644
--- a/dlls/msi/tests/action.c
+++ b/dlls/msi/tests/action.c
@@ -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);
-- 
2.6.1




More information about the wine-patches mailing list