Bug 59429

Summary: Fix last strict OwnPtr violation under svg/...
Product: WebKit Reporter: Adam Klein <adamk>
Component: New BugsAssignee: Adam Klein <adamk>
Status: RESOLVED FIXED    
Severity: Normal CC: abarth, eric, levin, webkit.review.bot
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Other   
OS: OS X 10.5   
Attachments:
Description Flags
Patch abarth: review+, abarth: commit-queue-

Adam Klein
Reported 2011-04-26 00:13:07 PDT
Fix last strict OwnPtr violation under svg/...
Attachments
Patch (1.44 KB, patch)
2011-04-26 00:13 PDT, Adam Klein
abarth: review+
abarth: commit-queue-
Adam Klein
Comment 1 2011-04-26 00:13:37 PDT
Adam Barth
Comment 2 2011-04-26 00:24:56 PDT
Comment on attachment 91075 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=91075&action=review > Source/WebCore/svg/SVGDocumentExtensions.cpp:243 > - OwnPtr<SVGPendingElements> set(m_pendingResources.get(id)); > + OwnPtr<SVGPendingElements> set(adoptPtr(m_pendingResources.get(id))); We prefer the assignment form of the constructor: OwnPtr<SVGPendingElements> set = adoptPtr(m_pendingResources.get(id));
Adam Barth
Comment 3 2011-04-26 00:27:59 PDT
I can land this for you.
Adam Barth
Comment 4 2011-04-26 00:30:22 PDT
WebKit Review Bot
Comment 5 2011-04-26 04:12:24 PDT
http://trac.webkit.org/changeset/84891 might have broken SnowLeopard Intel Release (WebKit2 Tests)
Note You need to log in before you can comment on or make changes to this bug.