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

This commit is contained in:
Juan Lang 2011-01-28 13:20:23 -08:00 committed by Alexandre Julliard
parent 2984605602
commit 36bc1c7f8f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}