Module: wine Branch: master Commit: 4a7371e32d310d61277d977a9c80db5f830bc1e4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4a7371e32d310d61277d977a9c... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Thu Jan 27 11:55:52 2011 +0100 msi/tests: Test a return value (clang). --- dlls/msi/tests/install.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index 5461387..1ae39d4 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);