crypt32: Fix a misplaced parenthesis.
This commit is contained in:
parent
220547708a
commit
d0ca58ba36
|
@ -365,8 +365,8 @@ BOOL WINAPI CryptGetOIDFunctionAddress(HCRYPTOIDFUNCSET hFuncSet,
|
|||
{
|
||||
if (HIWORD(pszOID))
|
||||
{
|
||||
if (HIWORD(function->entry.pszOID &&
|
||||
!strcasecmp(function->entry.pszOID, pszOID)))
|
||||
if (HIWORD(function->entry.pszOID) &&
|
||||
!strcasecmp(function->entry.pszOID, pszOID))
|
||||
{
|
||||
*ppvFuncAddr = function->entry.pvFuncAddr;
|
||||
*phFuncAddr = NULL; /* FIXME: what should it be? */
|
||||
|
|
Loading…
Reference in New Issue