From d0ca58ba365baf31b497112ea984f66155386f42 Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Mon, 21 Aug 2006 17:07:28 -0700 Subject: [PATCH] crypt32: Fix a misplaced parenthesis. --- dlls/crypt32/oid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/crypt32/oid.c b/dlls/crypt32/oid.c index 7b152c36947..c1d3bc62061 100644 --- a/dlls/crypt32/oid.c +++ b/dlls/crypt32/oid.c @@ -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? */ -- 2.11.4.GIT