[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

abarth at webkit.org abarth at webkit.org
Wed Dec 22 13:16:58 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6d610b2abad1b5028b023ab987db637a4d79847c
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 10 06:56:40 2010 +0000

    2010-09-09  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Dimitri Glazkov.
    
            Spurious null check in MediaDocumentParser
            https://bugs.webkit.org/show_bug.cgi?id=45461
    
            Trivial change.  FrameLoader can never be null.
    
            * html/MediaDocument.cpp:
            (WebCore::MediaDocumentParser::createDocumentStructure):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67174 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 01d1e34..74c9c17 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-09  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Dimitri Glazkov.
+
+        Spurious null check in MediaDocumentParser
+        https://bugs.webkit.org/show_bug.cgi?id=45461
+
+        Trivial change.  FrameLoader can never be null.
+
+        * html/MediaDocument.cpp:
+        (WebCore::MediaDocumentParser::createDocumentStructure):
+
 2010-09-09  Ryosuke Niwa  <rniwa at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/html/MediaDocument.cpp b/WebCore/html/MediaDocument.cpp
index 77c3d1f..875141b 100644
--- a/WebCore/html/MediaDocument.cpp
+++ b/WebCore/html/MediaDocument.cpp
@@ -72,7 +72,7 @@ void MediaDocumentParser::createDocumentStructure()
     RefPtr<Element> rootElement = document()->createElement(htmlTag, false);
     document()->appendChild(rootElement, ec);
 
-    if (document()->frame() && document()->frame()->loader())
+    if (document()->frame())
         document()->frame()->loader()->dispatchDocumentElementAvailable();
         
     RefPtr<Element> body = document()->createElement(bodyTag, false);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list