Christian Costa : shdocvw: Don't set res variable since it' s not ckecked after the call.

Alexandre Julliard julliard at winehq.org
Fri Apr 26 11:21:21 CDT 2013


Module: wine
Branch: master
Commit: 0fa2eddca29dc613c6e52fb6526becb8a55d5cb7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0fa2eddca29dc613c6e52fb6526becb8a55d5cb7

Author: Christian Costa <titan.costa at gmail.com>
Date:   Fri Apr 26 01:03:47 2013 +0200

shdocvw: Don't set res variable since it's not ckecked after the call.

---

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

diff --git a/dlls/shdocvw/shdocvw_main.c b/dlls/shdocvw/shdocvw_main.c
index be1588c..fa89051 100644
--- a/dlls/shdocvw/shdocvw_main.c
+++ b/dlls/shdocvw/shdocvw_main.c
@@ -442,7 +442,7 @@ DWORD WINAPI ParseURLFromOutsideSourceA(LPCSTR url, LPSTR out, LPDWORD plen, LPD
     }
 
     len = sizeof(buffer) / sizeof(buffer[0]);
-    res = ParseURLFromOutsideSourceW(urlW, buffer, &len, unknown);
+    ParseURLFromOutsideSourceW(urlW, buffer, &len, unknown);
     HeapFree(GetProcessHeap(), 0, urlW);
 
     needed = WideCharToMultiByte(CP_ACP, 0, buffer, -1, NULL, 0, NULL, NULL);




More information about the wine-cvs mailing list