Changeset 243585 in webkit
- Timestamp:
- Mar 27, 2019, 4:44:14 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-607-branch/Source/WebCore/platform/sql/SQLiteDatabase.cpp
r239273 r243585 31 31 #include "Logging.h" 32 32 #include "MemoryRelease.h" 33 #include "SQLiteDatabaseTracker.h" 33 34 #include "SQLiteFileSystem.h" 34 35 #include "SQLiteStatement.h" … … 126 127 127 128 { 129 SQLiteTransactionInProgressAutoCounter transactionCounter; 128 130 SQLiteStatement checkpointStatement(*this, "PRAGMA wal_checkpoint(TRUNCATE)"_s); 129 131 if (checkpointStatement.prepareAndStep() == SQLITE_ROW) { … … 147 149 m_db = 0; 148 150 } 151 SQLiteTransactionInProgressAutoCounter transactionCounter; 149 152 sqlite3_close(db); 150 153 }
Note:
See TracChangeset
for help on using the changeset viewer.