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

This commit is contained in:
Gerald Pfeifer 2010-05-07 21:31:09 +02:00 committed by Alexandre Julliard
parent 516fc78a2b
commit b98f916dae

View file

@ -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");