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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:34:37 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit fc26fbbfbdab094eb9f5987219b08c7182b6b03f
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Apr 4 21:31:40 2003 +0000

            Reviewed by John and Richard.
    
    	- fixed 3218725 -- REGRESSION: reproducible crash in recalcStyle on reload
    
            * khtml/xml/dom_docimpl.cpp: (DocumentImpl::DocumentImpl): Initialize m_paintDevice to 0.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4029 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index d26318c..7c9bd46 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2003-04-04  Darin Adler  <darin at apple.com>
 
+        Reviewed by John and Richard.
+
+	- fixed 3218725 -- REGRESSION: reproducible crash in recalcStyle on reload
+
+        * khtml/xml/dom_docimpl.cpp: (DocumentImpl::DocumentImpl): Initialize m_paintDevice to 0.
+
+2003-04-04  Darin Adler  <darin at apple.com>
+
         Reviewed by Dave.
 
 	- fixed 3125850 -- VIP: "search by goo" instead of "search by google" at livepage.apple.com
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index d26318c..7c9bd46 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2003-04-04  Darin Adler  <darin at apple.com>
 
+        Reviewed by John and Richard.
+
+	- fixed 3218725 -- REGRESSION: reproducible crash in recalcStyle on reload
+
+        * khtml/xml/dom_docimpl.cpp: (DocumentImpl::DocumentImpl): Initialize m_paintDevice to 0.
+
+2003-04-04  Darin Adler  <darin at apple.com>
+
         Reviewed by Dave.
 
 	- fixed 3125850 -- VIP: "search by goo" instead of "search by google" at livepage.apple.com
diff --git a/WebCore/khtml/xml/dom_docimpl.cpp b/WebCore/khtml/xml/dom_docimpl.cpp
index 6266fb5..f8fe094 100644
--- a/WebCore/khtml/xml/dom_docimpl.cpp
+++ b/WebCore/khtml/xml/dom_docimpl.cpp
@@ -237,6 +237,7 @@ DocumentImpl::DocumentImpl(DOMImplementationImpl *_implementation, KHTMLView *v)
 {
     document->doc = this;
 
+    m_paintDevice = 0;
     m_paintDeviceMetrics = 0;
 
     m_view = v;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list