Changeset 61935 in webkit


Ignore:
Timestamp:
Jun 25, 2010 7:59:39 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-06-25 Luiz Agostini <luiz.agostini@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] QtWebKit crashes if <select>'s render changes in its onchange event
https://bugs.webkit.org/show_bug.cgi?id=41164

QtWebKit crashes if <select>'s renderer changes in its onchange event.

  • WebCoreSupport/QtFallbackWebPopup.cpp: (WebCore::QtFallbackWebPopup::~QtFallbackWebPopup):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r61879 r61935  
     12010-06-25  Luiz Agostini  <luiz.agostini@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] QtWebKit crashes if <select>'s render changes in its onchange event
     6        https://bugs.webkit.org/show_bug.cgi?id=41164
     7
     8        QtWebKit crashes if <select>'s renderer changes in its onchange event.
     9
     10        * WebCoreSupport/QtFallbackWebPopup.cpp:
     11        (WebCore::QtFallbackWebPopup::~QtFallbackWebPopup):
     12
    1132010-06-25  Robert Hogan  <robert@webkit.org>
    214
  • trunk/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp

    r59614 r61935  
    9898    // If we create a proxy, then the deletion of the proxy and the
    9999    // combo will be done by the proxy's parent (QGraphicsWebView)
    100     if (!m_proxy)
    101         delete m_combo;
     100    if (!m_proxy && m_combo)
     101        m_combo->deleteLater();
    102102}
    103103
Note: See TracChangeset for help on using the changeset viewer.