From 4a7371e32d310d61277d977a9c80db5f830bc1e4 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Thu, 27 Jan 2011 11:55:52 +0100 Subject: [PATCH] msi/tests: Test a return value (clang). --- dlls/msi/tests/install.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index 54613873e07..1ae39d42d99 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -5535,6 +5535,8 @@ static void process_pending_renames(HKEY hkey) BOOL found = FALSE; ret = RegQueryValueExA(hkey, rename_ops, NULL, NULL, NULL, &size); + ok(!ret, "RegQueryValueExA failed %d\n", ret); + buf = HeapAlloc(GetProcessHeap(), 0, size + 1); buf2ptr = buf2 = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size + 1);