[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:36:00 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 998c9a7edb9ad6c45e37b94e75ab483575af684c
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 25 21:27:36 2010 +0000

    2010-08-25  Krzysztof Czech  <k.czech at samsung.com>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [EFL] Crash while calling PopupMenuEfl destructor
            https://bugs.webkit.org/show_bug.cgi?id=44497
    
            Condition checks if m_view is defined
            before popup is hide
    
            * platform/efl/PopupMenuEfl.cpp:
            (WebCore::PopupMenuEfl::~PopupMenuEfl):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66042 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 8af2012..e9ef02d 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-08-25  Krzysztof Czech  <k.czech at samsung.com>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [EFL] Crash while calling PopupMenuEfl destructor
+        https://bugs.webkit.org/show_bug.cgi?id=44497
+
+        Condition checks if m_view is defined
+        before popup is hide
+
+        * platform/efl/PopupMenuEfl.cpp:
+        (WebCore::PopupMenuEfl::~PopupMenuEfl):
+
 2010-08-24  Ryosuke Niwa  <rniwa at webkit.org>
 
         Reviewed by Tony Chang.
diff --git a/WebCore/platform/efl/PopupMenuEfl.cpp b/WebCore/platform/efl/PopupMenuEfl.cpp
index 401f24f..a6f7a53 100644
--- a/WebCore/platform/efl/PopupMenuEfl.cpp
+++ b/WebCore/platform/efl/PopupMenuEfl.cpp
@@ -43,7 +43,8 @@ PopupMenuEfl::~PopupMenuEfl()
 {
     // Tell client to destroy data related to this popup since this object is
     // going away.
-    hide();
+    if (m_view)
+        hide();
 }
 
 void PopupMenuEfl::show(const IntRect& rect, FrameView* view, int index)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list