Changeset 244272 in webkit


Ignore:
Timestamp:
Apr 15, 2019 10:36:34 AM (5 years ago)
Author:
bshafiei@apple.com
Message:

Apply patch. rdar://problem/49308059

File:
1 edited

Legend:

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

    r244258 r244272  
    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.