Commit bd8fc9c4 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/tests: Don't forget to free array after tests.

parent 0f003ef4
...@@ -347,6 +347,8 @@ static void test_dpa(void) ...@@ -347,6 +347,8 @@ static void test_dpa(void)
pDPA_DeleteAllPtrs(dpa2); pDPA_DeleteAllPtrs(dpa2);
rc=CheckDPA(dpa2, 0, &dw2); rc=CheckDPA(dpa2, 0, &dw2);
ok(rc, "dw2=0x%x\n", dw2); ok(rc, "dw2=0x%x\n", dw2);
pDPA_Destroy(dpa);
pDPA_Destroy(dpa2); pDPA_Destroy(dpa2);
pDPA_Destroy(dpa3); pDPA_Destroy(dpa3);
} }
...@@ -623,8 +625,10 @@ static void test_DPA_LoadStream(void) ...@@ -623,8 +625,10 @@ static void test_DPA_LoadStream(void)
hRes = IStream_Seek(pStm, li, STREAM_SEEK_SET, NULL); hRes = IStream_Seek(pStm, li, STREAM_SEEK_SET, NULL);
expect(S_OK, hRes); expect(S_OK, hRes);
dpa = NULL;
hRes = pDPA_LoadStream(&dpa, CB_Load, pStm, NULL); hRes = pDPA_LoadStream(&dpa, CB_Load, pStm, NULL);
expect(S_OK, hRes); expect(S_OK, hRes);
DPA_Destroy(dpa);
/* try with altered dwData2 field */ /* try with altered dwData2 field */
header.dwSize = sizeof(header); header.dwSize = sizeof(header);
......
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