[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 08:41:34 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit aecd6c89d487abfbb806025f03aa49cc5d36291d
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon May 24 22:53:06 2004 +0000

            Reviewed by Vicki.
    
            - fixed <rdar://problem/3665813>: (iBench is crashing in TOT)
    
            * khtml/html/html_formimpl.cpp: (HTMLSelectElementImpl::HTMLSelectElementImpl):
            Initialize m_options to 0.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6678 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index dfdf161..d2de0ef 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2004-05-24  Darin Adler  <darin at apple.com>
+
+        Reviewed by Vicki.
+
+        - fixed <rdar://problem/3665813>: (iBench is crashing in TOT)
+
+        * khtml/html/html_formimpl.cpp: (HTMLSelectElementImpl::HTMLSelectElementImpl):
+        Initialize m_options to 0.
+
 2004-05-24  Ken Kocienda  <kocienda at apple.com>
 
         Reviewed by Richard
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 27bf086..1e19f20 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -2034,7 +2034,7 @@ DOMString HTMLLegendElementImpl::type() const
 // -------------------------------------------------------------------------
 
 HTMLSelectElementImpl::HTMLSelectElementImpl(DocumentPtr *doc, HTMLFormElementImpl *f)
-    : HTMLGenericFormElementImpl(doc, f)
+    : HTMLGenericFormElementImpl(doc, f), m_options(0)
 {
     m_multiple = false;
     m_recalcListItems = false;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list