[PATCH] shldocvw: Fixed typo = vs == (Coverity)

Marcus Meissner meissner at suse.de
Fri Feb 25 07:16:07 CST 2011


CID1801
---
 dlls/shdocvw/shlinstobj.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/shdocvw/shlinstobj.c b/dlls/shdocvw/shlinstobj.c
index d272c91..067e678 100644
--- a/dlls/shdocvw/shlinstobj.c
+++ b/dlls/shdocvw/shlinstobj.c
@@ -376,7 +376,7 @@ HRESULT SHDOCVW_GetShellInstanceObjectClassObject(REFCLSID rclsid, REFIID riid,
 
     /* Figure if there is an 'Instance' subkey for the given CLSID and acquire a handle. */
     if (!StringFromGUID2(rclsid, wszInstanceKey + 6, CHARS_IN_GUID) ||
-        !(wszInstanceKey[5+CHARS_IN_GUID]='\\') || /* Repair the null-termination. */
+        !(wszInstanceKey[5+CHARS_IN_GUID] == '\\') || /* Repair the null-termination. */
         ERROR_SUCCESS != RegOpenKeyExW(HKEY_CLASSES_ROOT, wszInstanceKey, 0, KEY_READ, &hInstanceKey))
     {
         /* If there is no 'Instance' subkey, then it's not a Shell Instance Object. */
-- 
1.7.1



More information about the wine-patches mailing list