[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:44:49 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 30dd0032d8d1b62ef4a3582f080edb6e3dc66e9f
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jun 10 18:36:49 2003 +0000

    	Fix for 3270813, crash in the code for the CSS content property.
    	When copying a DOMString, I missed a required ref.
    
            Reviewed by darin
    
            * khtml/rendering/render_style.cpp:
            (RenderStyle::setContent):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4514 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 917700c..c599e10 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-06-10  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3270813, crash in the code for the CSS content property.
+	When copying a DOMString, I missed a required ref.
+	
+        Reviewed by darin
+
+        * khtml/rendering/render_style.cpp:
+        (RenderStyle::setContent):
+
 2003-06-10  Darin Adler  <darin at apple.com>
 
         Reviewed by John.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 917700c..c599e10 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-06-10  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3270813, crash in the code for the CSS content property.
+	When copying a DOMString, I missed a required ref.
+	
+        Reviewed by darin
+
+        * khtml/rendering/render_style.cpp:
+        (RenderStyle::setContent):
+
 2003-06-10  Darin Adler  <darin at apple.com>
 
         Reviewed by John.
diff --git a/WebCore/khtml/rendering/render_style.cpp b/WebCore/khtml/rendering/render_style.cpp
index 2a17100..470684b 100644
--- a/WebCore/khtml/rendering/render_style.cpp
+++ b/WebCore/khtml/rendering/render_style.cpp
@@ -505,6 +505,7 @@ void RenderStyle::setContent(DOMStringImpl* s, bool add)
             // We can augment the existing string and share this ContentData node.
             DOMStringImpl* oldStr = lastContent->_content.text;
             DOMStringImpl* newStr = oldStr->copy();
+            newStr->ref();
             oldStr->deref();
             newStr->append(s);
             lastContent->_content.text = newStr;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list