crypt32: Remove unneeded casts of zero.

This commit is contained in:
Francois Gouget 2008-12-08 09:26:31 +01:00 committed by Alexandre Julliard
parent d57774732a
commit 42abd3b03a

View file

@ -179,7 +179,7 @@ HCRYPTPROV WINAPI I_CryptGetDefaultCryptProv(DWORD reserved)
if (reserved)
{
SetLastError(E_INVALIDARG);
return (HCRYPTPROV)0;
return 0;
}
ret = CRYPT_GetDefaultProvider();
CryptContextAddRef(ret, NULL, 0);