Aric Stewart aric@codeweavers.com writes:
- if (!CryptCATAdminAcquireContext(&admin,NULL,0))
- {
ERR("Could not acquire security context\n");
return ERROR_GEN_FAILURE;
- }
- if (!(cat = CryptCATAdminAddCatalog(admin,catalog,basename,0)))
- {
ERR("Could not add catalog\n");
CryptCATAdminReleaseContext(admin, 0);
return ERROR_GEN_FAILURE;
You should return proper error codes based on the result of the called functions instead of a generic ERROR_GEN_FAILURE.