wintrust/tests: Make sure return values are used (LLVM/Clang).
This commit is contained in:
parent
855c5e848d
commit
4d6caaebbd
|
@ -616,6 +616,7 @@ static void test_CryptCATAdminAddRemoveCatalog(void)
|
|||
/* Set the attributes so we can delete the file */
|
||||
attrs = FILE_ATTRIBUTE_NORMAL;
|
||||
ret = SetFileAttributesA(tmpfile, attrs);
|
||||
ok(ret, "SetFileAttributesA failed %u\n", GetLastError());
|
||||
DeleteFileA(tmpfile);
|
||||
}
|
||||
|
||||
|
@ -784,7 +785,7 @@ static void test_create_catalog_file(void)
|
|||
|
||||
/* Only enumerate the members */
|
||||
trace("Only members\n");
|
||||
attrcount = membercount = 0;
|
||||
membercount = 0;
|
||||
catcdf = pCryptCATCDFOpen(cdffileW, NULL);
|
||||
|
||||
catmember = NULL;
|
||||
|
|
Loading…
Reference in New Issue