Austin English : jscript/tests: Remove a dead assignment (LLVM/Clang).

Alexandre Julliard julliard at winehq.org
Thu Feb 17 13:06:36 CST 2011


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

Author: Austin English <austinenglish at gmail.com>
Date:   Wed Feb 16 18:43:24 2011 -0800

jscript/tests: Remove a dead assignment (LLVM/Clang).

---

 dlls/jscript/tests/run.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/jscript/tests/run.c b/dlls/jscript/tests/run.c
index 326b327..18252be 100644
--- a/dlls/jscript/tests/run.c
+++ b/dlls/jscript/tests/run.c
@@ -1276,7 +1276,7 @@ static void run_from_res(const char *name)
 
     len = MultiByteToWideChar(CP_ACP, 0, data, size, NULL, 0);
     str = SysAllocStringLen(NULL, len);
-    len = MultiByteToWideChar(CP_ACP, 0, data, size, str, len);
+    MultiByteToWideChar(CP_ACP, 0, data, size, str, len);
 
     SET_EXPECT(global_success_d);
     SET_EXPECT(global_success_i);




More information about the wine-cvs mailing list