From 04f74d7e43336afd62feb918a9c2ee7e9fab8d6d Mon Sep 17 00:00:00 2001 From: Juan Lang <juan.lang@gmail.com> Date: Tue, 15 Feb 2011 11:07:19 -0800 Subject: [PATCH] crypt32/tests: Test return value (clang). --- dlls/crypt32/tests/msg.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/crypt32/tests/msg.c b/dlls/crypt32/tests/msg.c index de55d6b967d..ddb94bd060a 100644 --- a/dlls/crypt32/tests/msg.c +++ b/dlls/crypt32/tests/msg.c @@ -853,6 +853,8 @@ static void test_hash_msg_get_param(void) ok(ret, "CryptMsgGetParam failed: %08x\n", GetLastError()); ok(size == sizeof(buf), "Unexpected size %d\n", size); ret = CryptMsgGetParam(msg, CMSG_COMPUTED_HASH_PARAM, 0, buf, &size); + ok(ret, "CryptMsgGetParam failed: %08x\n", GetLastError()); + ok(size == sizeof(buf), "Unexpected size %d\n", size); if (size == sizeof(buf)) ok(!memcmp(buf, emptyHashParam, size), "Unexpected value\n"); /* By getting the hash, further updates are not allowed */ -- GitLab