gdiplus: Free memory after some GraphicsPath tests.

This commit is contained in:
Nikolay Sivov 2008-08-24 14:45:09 +04:00 committed by Alexandre Julliard
parent 6e37ec6bc3
commit ac23eb7939
1 changed files with 4 additions and 0 deletions

View File

@ -214,6 +214,8 @@ static void test_line2(void)
expect(Ok, status);
ok_path(path, line2_path, sizeof(line2_path)/sizeof(path_test_t), FALSE);
GdipDeletePath(path);
}
static path_test_t arc_path[] = {
@ -283,6 +285,8 @@ static void test_arc(void)
expect(Ok, status);
ok_path(path, arc_path, sizeof(arc_path)/sizeof(path_test_t), FALSE);
GdipDeletePath(path);
}
static void test_worldbounds(void)