[1/3] gdiplus: Implement GdipBeginContainer2 and GdipEndContainer

Vincent Povirk madewokherd+8cd9 at gmail.com
Sun Jul 5 16:36:20 CDT 2009


+    sts = GdipCloneMatrix(container->worldtrans, &newTrans);

+    if(sts != Ok)

+        return sts;

+

+    sts = GdipCloneRegion(container->clip, &newClip);

+    if(sts != Ok)

+        return sts;

This leaks a matrix if GdipCloneRegion fails.

-- 
Vincent Povirk



More information about the wine-devel mailing list