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

andersca at apple.com andersca at apple.com
Wed Dec 22 12:48:00 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 3f23ad92e18a4f9ab4e39fcd86e818f81890cb9d
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 30 17:35:33 2010 +0000

    WorkQueue leaks its dispatch queue
    <rdar://problem/8358509>
    https://bugs.webkit.org/show_bug.cgi?id=44689
    
    Reviewed by Sam Weinig.
    
    * Platform/mac/WorkQueueMac.cpp:
    (WorkQueue::platformInvalidate):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66396 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index d616b4a..585176e 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-30  Anders Carlsson  <andersca at apple.com>
+
+        Reviewed by Sam Weinig.
+
+        WorkQueue leaks its dispatch queue
+        <rdar://problem/8358509>
+        https://bugs.webkit.org/show_bug.cgi?id=44689
+
+        * Platform/mac/WorkQueueMac.cpp:
+        (WorkQueue::platformInvalidate):
+
 2010-08-27  Sam Weinig  <sam at webkit.org>
 
         Reviewed by Dan Bernstein.
diff --git a/WebKit2/Platform/mac/WorkQueueMac.cpp b/WebKit2/Platform/mac/WorkQueueMac.cpp
index 4fcf313..7cb08b9 100644
--- a/WebKit2/Platform/mac/WorkQueueMac.cpp
+++ b/WebKit2/Platform/mac/WorkQueueMac.cpp
@@ -166,6 +166,8 @@ void WorkQueue::platformInvalidate()
     MutexLocker locker(m_eventSourcesMutex);
     ASSERT(m_eventSources.isEmpty());
 #endif
+
+    dispatch_release(m_dispatchQueue);
 }
 
 #else /* !HAVE(DISPATCH_H) */

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list