Skip to content
Snippets Groups Projects
Commit 6e37ec6b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard
Browse files

gdiplus: Use GdipFree instead of HeapFree in GdipDeleteGraphics.

parent 0db63a02
No related branches found
No related tags found
No related merge requests found
......@@ -892,7 +892,7 @@ GpStatus WINGDIPAPI GdipDeleteGraphics(GpGraphics *graphics)
ReleaseDC(graphics->hwnd, graphics->hdc);
GdipDeleteMatrix(graphics->worldtrans);
HeapFree(GetProcessHeap(), 0, graphics);
GdipFree(graphics);
return Ok;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment