From f6364bf9703adefea326276bb652966b5438738a Mon Sep 17 00:00:00 2001 From: Austin English Date: Thu, 10 Feb 2011 13:27:06 -0800 Subject: [PATCH] crypt32/tests: Make sure to use a return value (LLVM/Clang). --- dlls/crypt32/tests/ctl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/crypt32/tests/ctl.c b/dlls/crypt32/tests/ctl.c index 8ee26526289..978ccdabda7 100644 --- a/dlls/crypt32/tests/ctl.c +++ b/dlls/crypt32/tests/ctl.c @@ -213,6 +213,7 @@ static void checkHash(const BYTE *data, DWORD dataLen, ALG_ID algID, memset(hashProperty, 0, sizeof(hashProperty)); size = sizeof(hash); ret = CryptHashCertificate(0, algID, 0, data, dataLen, hash, &size); + ok(ret, "CryptHashCertificate failed: %08x\n", GetLastError()); ret = CertGetCTLContextProperty(context, propID, hashProperty, &size); ok(ret, "CertGetCTLContextProperty failed: %08x\n", GetLastError()); if (ret) -- 2.11.4.GIT