[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 15:46:34 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 9bf33fa67c468459fe1b8811417cf3e3ff5c1cfe
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Nov 12 03:07:43 2010 +0000

    2010-11-11  Adam Barth  <abarth at webkit.org>
    
            Reviewed by David Levin.
    
            Add some RefPtrs to be on the safe side
            https://bugs.webkit.org/show_bug.cgi?id=49301
    
            Hopefully no behavior change.
    
            * html/parser/HTMLTreeBuilder.cpp:
            (WebCore::HTMLTreeBuilder::processIsindexStartTagForInBody):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71879 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 338c4d7..25f1718 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-11-11  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by David Levin.
+
+        Add some RefPtrs to be on the safe side
+        https://bugs.webkit.org/show_bug.cgi?id=49301
+
+        Hopefully no behavior change.
+
+        * html/parser/HTMLTreeBuilder.cpp:
+        (WebCore::HTMLTreeBuilder::processIsindexStartTagForInBody):
+
 2010-11-11  Chris Rogers  <crogers at google.com>
 
         Reviewed by Kenneth Russell.
diff --git a/WebCore/html/parser/HTMLTreeBuilder.cpp b/WebCore/html/parser/HTMLTreeBuilder.cpp
index cd459c3..3e15a26 100644
--- a/WebCore/html/parser/HTMLTreeBuilder.cpp
+++ b/WebCore/html/parser/HTMLTreeBuilder.cpp
@@ -554,14 +554,14 @@ void HTMLTreeBuilder::processIsindexStartTagForInBody(AtomicHTMLToken& token)
         return;
     notImplemented(); // Acknowledge self-closing flag
     processFakeStartTag(formTag);
-    Attribute* actionAttribute = token.getAttributeItem(actionAttr);
+    RefPtr<Attribute> actionAttribute = token.getAttributeItem(actionAttr);
     if (actionAttribute) {
         ASSERT(m_tree.currentElement()->hasTagName(formTag));
         m_tree.currentElement()->setAttribute(actionAttr, actionAttribute->value());
     }
     processFakeStartTag(hrTag);
     processFakeStartTag(labelTag);
-    Attribute* promptAttribute = token.getAttributeItem(promptAttr);
+    RefPtr<Attribute> promptAttribute = token.getAttributeItem(promptAttr);
     if (promptAttribute)
         processFakeCharacters(promptAttribute->value());
     else

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list