Re: [6/7] gdiplus: Implemented GdipGetPathData with test
26 Jun
2008
26 Jun
'08
6:52 p.m.
Hi Nikolay:
+ pathData->Points = GdipAlloc(sizeof(PointF) * pathData->Count); + if(!pathData->Points) + return OutOfMemory; + + pathData->Types = GdipAlloc(pathData->Count); + if(!pathData->Points)
Greetings from Copy & Paste pathData->Points => pathData->Types
+ return OutOfMemory;
You are leaking the memory in pathData->Points -- By by ... Detlef
6382
Age (days ago)
6382
Last active (days ago)
0 comments
1 participants
participants (1)
-
Detlef Riekenberg