Changeset 219201 in webkit
- Timestamp:
- Jul 6, 2017, 9:49:16 AM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r219199 r219201 1 2017-07-06 David Kilzer <ddkilzer@apple.com> 2 3 Add release assert to explore crash for <rdar://problem/32908525> 4 5 Reviewed by Brady Eidson. 6 7 * Modules/indexeddb/server/UniqueIDBDatabase.cpp: 8 (WebCore::IDBServer::UniqueIDBDatabase::~UniqueIDBDatabase): Add 9 release assert to catch cases when the IDBBackingStore is not 10 deleted before the UniqueIDBDatabase is destroyed. The 11 IDBBackingStore should always be released on the database 12 thread. 13 1 14 2017-07-06 Matt Lewis <jlewis3@apple.com> 2 15 -
trunk/Source/WebCore/Modules/indexeddb/server/UniqueIDBDatabase.cpp
r218803 r219201 67 67 { 68 68 LOG(IndexedDB, "UniqueIDBDatabase::~UniqueIDBDatabase() (%p) %s", this, m_identifier.debugString().utf8().data()); 69 RELEASE_ASSERT(!m_backingStore); 69 70 ASSERT(isMainThread()); 70 71 ASSERT(!hasAnyPendingCallbacks());
Note:
See TracChangeset
for help on using the changeset viewer.