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