gdiplus/tests: Fix a matrix leak in test.

This commit is contained in:
Nikolay Sivov 2009-12-09 00:20:34 +03:00 committed by Alexandre Julliard
parent 6894d841cd
commit 29357ec024
1 changed files with 1 additions and 0 deletions

View File

@ -410,6 +410,7 @@ static void test_worldbounds(void)
status = GdipGetPathWorldBounds(path, &bounds, matrix, NULL);
expect(Ok, status);
GdipDeletePath(path);
GdipDeleteMatrix(matrix);
expectf(-209.6, bounds.X);
expectf(-1274.8, bounds.Y);