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

vestbo at webkit.org vestbo at webkit.org
Wed Dec 22 14:22:27 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 4f13a9fda64ac501ee1a0f5077e94f83860e9c48
Author: vestbo at webkit.org <vestbo at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 7 11:38:36 2010 +0000

    [Qt] Disconnect signals before destroying MediaPlayerPrivateQt
    
    Reviewed by Andreas Kling.
    
    https://bugs.webkit.org/show_bug.cgi?id=47073
    
    * platform/graphics/qt/MediaPlayerPrivateQt.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69291 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 57674be..3e5927b 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-10-06  Tor Arne Vestbø  <tor.arne.vestbo at nokia.com>
+
+        Reviewed by Andreas Kling.
+
+        [Qt] Disconnect signals before destroying MediaPlayerPrivateQt
+
+        https://bugs.webkit.org/show_bug.cgi?id=47073
+
+        * platform/graphics/qt/MediaPlayerPrivateQt.cpp:
+
 2010-10-07  Alexander Pavlov  <apavlov at chromium.org>
 
         Unreviewed, release build fix.
diff --git a/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp b/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp
index fdb02ad..f5cd71a 100644
--- a/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp
+++ b/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp
@@ -136,6 +136,7 @@ MediaPlayerPrivateQt::MediaPlayerPrivateQt(MediaPlayer* player)
 
 MediaPlayerPrivateQt::~MediaPlayerPrivateQt()
 {
+    m_mediaPlayer->disconnect(this);
     m_mediaPlayer->stop();
     m_mediaPlayer->setMedia(QMediaContent());
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list