objc2 is a replacement for objc/objc_id that contains a bunch of safety improvements, including msg_send_id! which ensures that we uphold memory management rules correctly, and objc2-app-kit which is an automatically generated interface to AppKit.
Concretely, this fixes a leak in the passing of the NSArray to writeObjects.
objc2
is a replacement forobjc
/objc_id
that contains a bunch of safety improvements, includingmsg_send_id!
which ensures that we uphold memory management rules correctly, andobjc2-app-kit
which is an automatically generated interface to AppKit.Concretely, this fixes a leak in the passing of the
NSArray
towriteObjects
.