hhctrl.ocx: Remove unused variable

Andrew Talbot andrew.talbot at talbotville.com
Tue Nov 20 14:58:28 CST 2012


Changelog:
    hhctrl.ocx: Remove unused variable.

diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c
index 38446dc..f6155c7 100644
--- a/dlls/hhctrl.ocx/help.c
+++ b/dlls/hhctrl.ocx/help.c
@@ -266,7 +266,6 @@ static void DoSync(HHInfo *info)
 {
     WCHAR buf[INTERNET_MAX_URL_LENGTH];
     HRESULT hres;
-    DWORD len;
     BSTR url;
 
     hres = IWebBrowser2_get_LocationURL(info->web_browser, &url);
@@ -278,7 +277,7 @@ static void DoSync(HHInfo *info)
     }
 
     /* If we're not currently viewing a page in the active .chm file, abort */
-    if ((!AppendFullPathURL(info->WinType.pszFile, buf, NULL)) || (len = lstrlenW(buf) > lstrlenW(url)))
+    if ((!AppendFullPathURL(info->WinType.pszFile, buf, NULL)) || (lstrlenW(buf) > lstrlenW(url)))
     {
         SysFreeString(url);
         return;




More information about the wine-patches mailing list