Title: [164099] trunk/Source/WebCore
Revision
164099
Author
o...@webkit.org
Date
2014-02-14 03:52:05 -0800 (Fri, 14 Feb 2014)

Log Message

Follow-up fix after r164036.

Patch by László Langó <llango.u-sze...@partner.samsung.com> on 2014-02-14
Reviewed by Csaba Osztrogonác.

* dom/Document.cpp:
(WebCore::Document::create):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (164098 => 164099)


--- trunk/Source/WebCore/ChangeLog	2014-02-14 11:38:52 UTC (rev 164098)
+++ trunk/Source/WebCore/ChangeLog	2014-02-14 11:52:05 UTC (rev 164099)
@@ -1,3 +1,12 @@
+2014-02-14  László Langó  <llango.u-sze...@partner.samsung.com>
+
+        Follow-up fix after r164036.
+
+        Reviewed by Csaba Osztrogonác.
+
+        * dom/Document.cpp:
+        (WebCore::Document::create):
+
 2014-02-13  Byungseon Shin  <sun.s...@lge.com>
 
         [MSE] Move PublicURLManager shutdown logic so ActiveDOMObjects associated with public URLs won't leak.

Modified: trunk/Source/WebCore/dom/Document.cpp (164098 => 164099)


--- trunk/Source/WebCore/dom/Document.cpp	2014-02-14 11:38:52 UTC (rev 164098)
+++ trunk/Source/WebCore/dom/Document.cpp	2014-02-14 11:52:05 UTC (rev 164099)
@@ -563,7 +563,7 @@
 {
     RefPtr<Document> document = adoptRef(new Document(nullptr, URL()));
     document->setSecurityOrigin(context.securityOrigin());
-    return document;
+    return document.release();
 }
 
 Document::~Document()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to