UIBezierPathSerialization
UIBezierPathSerialization copied to clipboard
Memory leak?
I think you need a release of the path you create at line 401 of UIBezierPathSerialization.m
CGMutablePathRef path = CGPathCreateMutable();
Maybe insert between line 449 and 450?
CGPathRelease(path);