Fix a few testcase leaks

This commit is contained in:
rfm 2025-01-01 15:03:52 +00:00
parent 96a719ae20
commit 3a3a8c47c9
3 changed files with 7 additions and 3 deletions

View file

@ -32,6 +32,9 @@ int main()
pass([copy1Bitmap bitmapData] != [copy2Bitmap bitmapData],
"Copied bitmaps have a different image data pointer - could cause image data corruption.");
DESTROY(copy1Bitmap);
DESTROY(copy2Bitmap);
DESTROY(origBitmap);
[arp release];
return 0;
}