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

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:48:12 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 18c6c1469927aff6fc98ea1b8851827554572fef
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jun 23 00:16:44 2004 +0000

    	Fixed <rdar://problem/3707162>: accessing embeds[] plug-in interface may crash
    
    
    	embedInstance was uninitialized.
    
            Reviewed by Chris.
    
            * khtml/html/html_objectimpl.cpp:
            (HTMLEmbedElementImpl::HTMLEmbedElementImpl):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6907 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 60cde21..7ad000c 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2004-06-22  Richard Williamson   <rjw at apple.com>
+
+	Fixed <rdar://problem/3707162>: accessing embeds[] plug-in interface may crash
+
+	embedInstance was uninitialized.
+
+        Reviewed by Chris.
+
+        * khtml/html/html_objectimpl.cpp:
+        (HTMLEmbedElementImpl::HTMLEmbedElementImpl):
+
 2004-06-18  John Sullivan  <sullivan at apple.com>
 
         Reviewed by Darin
diff --git a/WebCore/khtml/html/html_objectimpl.cpp b/WebCore/khtml/html/html_objectimpl.cpp
index 3ca4928..f5755d5 100644
--- a/WebCore/khtml/html/html_objectimpl.cpp
+++ b/WebCore/khtml/html/html_objectimpl.cpp
@@ -215,7 +215,7 @@ KJS::Bindings::Instance *HTMLAppletElementImpl::getAppletInstance() const
 // -------------------------------------------------------------------------
 
 HTMLEmbedElementImpl::HTMLEmbedElementImpl(DocumentPtr *doc)
-    : HTMLElementImpl(doc)
+    : HTMLElementImpl(doc), embedInstance(0)
 {}
 
 HTMLEmbedElementImpl::~HTMLEmbedElementImpl()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list