Commit 36bc1c7f authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32/tests: Don't assign a return value that's never checked (clang).

parent 29846056
......@@ -1844,7 +1844,7 @@ static void testCertOpenSystemStore(void)
if (store)
CertCloseStore(store, 0);
/* Delete it so other tests succeed next time around */
store = CertOpenStore(CERT_STORE_PROV_SYSTEM, 0, 0,
CertOpenStore(CERT_STORE_PROV_SYSTEM, 0, 0,
CERT_SYSTEM_STORE_CURRENT_USER | CERT_STORE_DELETE_FLAG, BogusW);
RegDeleteKeyW(HKEY_CURRENT_USER, BogusPathW);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment