[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 08:02:43 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit aa40284a64be0d2e3e47992e78346e308ca31613
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Oct 18 09:28:56 2003 +0000

    	Fix for 3443502, generated content sometimes doesn't generate.  The bug is caused by an
    	uninitialized variable.  m_isContinuation needed to be set to false in the RenderInline
    	constructor.
    
            Reviewed by NOBODY (it's a simple obvious fix)
    
            * khtml/rendering/render_inline.cpp:
            (m_isContinuation):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5204 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 51fad1a..555c54d 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,14 @@
+2003-10-18  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3443502, generated content sometimes doesn't generate.  The bug is caused by an
+	uninitialized variable.  m_isContinuation needed to be set to false in the RenderInline
+	constructor.
+	
+        Reviewed by NOBODY (it's a simple obvious fix)
+
+        * khtml/rendering/render_inline.cpp:
+        (m_isContinuation):
+
 2003-10-17  Darin Adler  <darin at apple.com>
 
         Reviewed by Maciej.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 51fad1a..555c54d 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2003-10-18  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3443502, generated content sometimes doesn't generate.  The bug is caused by an
+	uninitialized variable.  m_isContinuation needed to be set to false in the RenderInline
+	constructor.
+	
+        Reviewed by NOBODY (it's a simple obvious fix)
+
+        * khtml/rendering/render_inline.cpp:
+        (m_isContinuation):
+
 2003-10-17  Darin Adler  <darin at apple.com>
 
         Reviewed by Maciej.
diff --git a/WebCore/khtml/rendering/render_inline.cpp b/WebCore/khtml/rendering/render_inline.cpp
index 828f790..63b2026 100644
--- a/WebCore/khtml/rendering/render_inline.cpp
+++ b/WebCore/khtml/rendering/render_inline.cpp
@@ -31,7 +31,7 @@
 using namespace khtml;
 
 RenderInline::RenderInline(DOM::NodeImpl* node)
-:RenderFlow(node)
+:RenderFlow(node), m_isContinuation(false)
 {}
 
 RenderInline::~RenderInline()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list