crypt32: Fix a misplaced parenthesis.

This commit is contained in:
Juan Lang 2006-08-21 17:07:28 -07:00 committed by Alexandre Julliard
parent 220547708a
commit d0ca58ba36
1 changed files with 2 additions and 2 deletions

View File

@ -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? */