Title: [244258] branches/safari-607-branch/Source/WebCore/platform/sql/SQLiteDatabase.cpp
Revision
244258
Author
[email protected]
Date
2019-04-15 00:43:45 -0700 (Mon, 15 Apr 2019)

Log Message

Revert r243585. rdar://problem/49894388

Modified Paths

Diff

Modified: branches/safari-607-branch/Source/WebCore/platform/sql/SQLiteDatabase.cpp (244257 => 244258)


--- branches/safari-607-branch/Source/WebCore/platform/sql/SQLiteDatabase.cpp	2019-04-15 07:43:43 UTC (rev 244257)
+++ branches/safari-607-branch/Source/WebCore/platform/sql/SQLiteDatabase.cpp	2019-04-15 07:43:45 UTC (rev 244258)
@@ -30,7 +30,6 @@
 #include "DatabaseAuthorizer.h"
 #include "Logging.h"
 #include "MemoryRelease.h"
-#include "SQLiteDatabaseTracker.h"
 #include "SQLiteFileSystem.h"
 #include "SQLiteStatement.h"
 #include <mutex>
@@ -126,7 +125,6 @@
     }
 
     {
-        SQLiteTransactionInProgressAutoCounter transactionCounter;
         SQLiteStatement checkpointStatement(*this, "PRAGMA wal_checkpoint(TRUNCATE)"_s);
         if (checkpointStatement.prepareAndStep() == SQLITE_ROW) {
             if (checkpointStatement.getColumnInt(0))
@@ -148,7 +146,6 @@
             LockHolder locker(m_databaseClosingMutex);
             m_db = 0;
         }
-        SQLiteTransactionInProgressAutoCounter transactionCounter;
         sqlite3_close(db);
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to