Module: wine Branch: master Commit: d0ca58ba365baf31b497112ea984f66155386f42 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=d0ca58ba365baf31b497112e...
Author: Juan Lang juan_lang@yahoo.com Date: Mon Aug 21 17:07:28 2006 -0700
crypt32: Fix a misplaced parenthesis.
---
dlls/crypt32/oid.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/crypt32/oid.c b/dlls/crypt32/oid.c index 7b152c3..c1d3bc6 100644 --- a/dlls/crypt32/oid.c +++ b/dlls/crypt32/oid.c @@ -365,8 +365,8 @@ BOOL WINAPI CryptGetOIDFunctionAddress(H { 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? */