Commit 4dc81b65 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

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

parent 66f5234f
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment