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

andreip at google.com andreip at google.com
Wed Dec 22 13:41:16 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 091510873d51bb4ec64fbf74f3cd5e7ef090303b
Author: andreip at google.com <andreip at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 23 15:37:37 2010 +0000

    2010-09-23  Andrei Popescu  <andreip at google.com>
    
            Reviewed by Jeremy Orlow.
    
            IDBTransactionCoordinator contains a broken assertion.
            https://bugs.webkit.org/show_bug.cgi?id=46356
    
            Remove the broken assertion.
    
            * storage/IDBTransactionCoordinator.cpp:
            (WebCore::IDBTransactionCoordinator::processStartedTransactions):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68143 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index ba41844..b4f1d9f 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-23  Andrei Popescu  <andreip at google.com>
+
+        Reviewed by Jeremy Orlow.
+
+        IDBTransactionCoordinator contains a broken assertion.
+        https://bugs.webkit.org/show_bug.cgi?id=46356
+
+        Remove the broken assertion.
+
+        * storage/IDBTransactionCoordinator.cpp:
+        (WebCore::IDBTransactionCoordinator::processStartedTransactions):
+
 2010-09-23  Pavel Podivilov  <podivilov at chromium.org>
 
         Reviewed by Pavel Feldman.
diff --git a/WebCore/storage/IDBTransactionCoordinator.cpp b/WebCore/storage/IDBTransactionCoordinator.cpp
index 049bed3..4b06371 100644
--- a/WebCore/storage/IDBTransactionCoordinator.cpp
+++ b/WebCore/storage/IDBTransactionCoordinator.cpp
@@ -83,8 +83,6 @@ void IDBTransactionCoordinator::processStartedTransactions()
     if (m_startedTransactions.isEmpty() || !m_runningTransactions.isEmpty())
         return;
 
-    ASSERT(m_transactions.contains(transaction->id()));
-
     IDBTransactionBackendImpl* transaction = *m_startedTransactions.begin();
     m_startedTransactions.remove(transaction);
     m_runningTransactions.add(transaction);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list