[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

eric at webkit.org eric at webkit.org
Thu Oct 29 20:47:49 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit d1ce5e968719ea7af63a643a9cc3b22d2bcbf923
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 19 17:35:59 2009 +0000

    2009-10-19  Kent Tamura  <tkent at chromium.org>
    
            Reviewed by Alexey Proskuryakov.
    
            Fix uninitialized variable reference in Element::removeAttribute().
            https://bugs.webkit.org/show_bug.cgi?id=30502
    
            * dom/Element.cpp:
            (WebCore::Element::removeAttribute):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49792 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 540fd46..2b9c9fa 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2009-10-19  Kent Tamura  <tkent at chromium.org>
+
+        Reviewed by Alexey Proskuryakov.
+
+        Fix uninitialized variable reference in Element::removeAttribute().
+        https://bugs.webkit.org/show_bug.cgi?id=30502
+
+        * dom/Element.cpp:
+        (WebCore::Element::removeAttribute):
+
 2009-10-19  Eric Carlson  <eric.carlson at apple.com>
 
         Reviewed by Simon Fraser.
diff --git a/WebCore/dom/Element.cpp b/WebCore/dom/Element.cpp
index 50ff033..930a6a2 100644
--- a/WebCore/dom/Element.cpp
+++ b/WebCore/dom/Element.cpp
@@ -123,6 +123,7 @@ PassRefPtr<Element> Element::cloneElementWithoutChildren()
 void Element::removeAttribute(const QualifiedName& name, ExceptionCode& ec)
 {
     if (namedAttrMap) {
+        ec = 0;
         namedAttrMap->removeNamedItem(name, ec);
         if (ec == NOT_FOUND_ERR)
             ec = 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list