[Webkit-unassigned] [Bug 72558] [Qt] load(),

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Nov 16 16:21:12 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=72558


Sam Weinig <sam at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |sam at webkit.org




--- Comment #1 from Sam Weinig <sam at webkit.org>  2011-11-16 16:21:12 PST ---
I believe the issue is this line:

WKRetainPtr<WKURLRef> wkurl(WKURLCreateWithQUrl(url));

that should read:

WKRetainPtr<WKURLRef> wkurl = adoptWK(WKURLCreateWithQUrl(url));

This follow the Create Rule (http://developer.apple.com/library/IOs/#documentation/CoreFoundation/Conceptual/CFMemoryMgmt/Concepts/Ownership.html).

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list