[Cocoa] Update some JavaScriptCore code to be more ready for ARC
Created attachment 341955 [details] Patch
Comment on attachment 341955 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=341955&action=review > Source/JavaScriptCore/API/JSAPIWrapperObject.mm:95 > - m_wrappedObject = [static_cast<id>(wrappedObject) retain]; > + m_wrappedObject = (__bridge id)wrappedObject; Won't this lead to a memory leak when compiling without ARC now?
Comment on attachment 341955 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=341955&action=review >> Source/JavaScriptCore/API/JSAPIWrapperObject.mm:95 >> + m_wrappedObject = (__bridge id)wrappedObject; > > Won't this lead to a memory leak when compiling without ARC now? Yes should have omitted this change; will remove it. I’ve been doing a verification pass on these “ARC prep” patches where I search for release and retain in the patch, which I think would have caught this.
Created attachment 341969 [details] Patch
New patch omits the incorrect change Anders pointed out, and also fixes another leak elsewhere in the patch.
Created attachment 341970 [details] Patch
This quite small patch should be straightforward and correct now.
Committed r232513: <https://trac.webkit.org/changeset/232513>
<rdar://problem/40812844>