oleaut32/tests: Remove variable changed which is not really used from test_SysReAllocStringLen.
This commit is contained in:
parent
516fc78a2b
commit
b98f916dae
|
@ -5444,9 +5444,7 @@ static void test_SysReAllocStringLen(void)
|
||||||
ok(str != NULL, "Expected non-NULL\n");
|
ok(str != NULL, "Expected non-NULL\n");
|
||||||
if(str)
|
if(str)
|
||||||
{
|
{
|
||||||
int changed;
|
SysReAllocStringLen(&str, str, 1000000);
|
||||||
|
|
||||||
changed = SysReAllocStringLen(&str, str, 1000000);
|
|
||||||
ok(SysStringLen(str)==1000000, "Incorrect string length\n");
|
ok(SysStringLen(str)==1000000, "Incorrect string length\n");
|
||||||
ok(!memcmp(szTest, str, 4*sizeof(WCHAR)), "Incorrect string returned\n");
|
ok(!memcmp(szTest, str, 4*sizeof(WCHAR)), "Incorrect string returned\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue