⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243585 in webkit


Ignore:
Timestamp:
Mar 27, 2019, 4:44:14 PM (7 years ago)
Author:
Alan Coon
Message:

Apply patch. rdar://problem/49308059

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-607-branch/Source/WebCore/platform/sql/SQLiteDatabase.cpp

    r239273 r243585  
    3131#include "Logging.h"
    3232#include "MemoryRelease.h"
     33#include "SQLiteDatabaseTracker.h"
    3334#include "SQLiteFileSystem.h"
    3435#include "SQLiteStatement.h"
     
    126127
    127128    {
     129        SQLiteTransactionInProgressAutoCounter transactionCounter;
    128130        SQLiteStatement checkpointStatement(*this, "PRAGMA wal_checkpoint(TRUNCATE)"_s);
    129131        if (checkpointStatement.prepareAndStep() == SQLITE_ROW) {
     
    147149            m_db = 0;
    148150        }
     151        SQLiteTransactionInProgressAutoCounter transactionCounter;
    149152        sqlite3_close(db);
    150153    }
Note: See TracChangeset for help on using the changeset viewer.