Commit b98f916d authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

oleaut32/tests: Remove variable changed which is not really used from test_SysReAllocStringLen.

parent 516fc78a
......@@ -5444,9 +5444,7 @@ static void test_SysReAllocStringLen(void)
ok(str != NULL, "Expected non-NULL\n");
if(str)
{
int changed;
changed = SysReAllocStringLen(&str, str, 1000000);
SysReAllocStringLen(&str, str, 1000000);
ok(SysStringLen(str)==1000000, "Incorrect string length\n");
ok(!memcmp(szTest, str, 4*sizeof(WCHAR)), "Incorrect string returned\n");
......
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