Changeset 186279 in webkit for trunk/Source/WebKit/Storage/StorageAreaSync.cpp
- Timestamp:
- Jul 4, 2015, 12:42:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/Storage/StorageAreaSync.cpp
r182365 r186279 89 89 // FIXME: We do this to avoid races, but it'd be better to make things safe without blocking. 90 90 blockUntilImportComplete(); 91 m_storageArea = 0;// This is done in blockUntilImportComplete() but this is here as a form of documentation that we must be absolutely sure the ref count cycle is broken.91 m_storageArea = nullptr; // This is done in blockUntilImportComplete() but this is here as a form of documentation that we must be absolutely sure the ref count cycle is broken. 92 92 93 93 if (m_syncTimer.isActive()) … … 376 376 while (!m_importComplete) 377 377 m_importCondition.wait(m_importLock); 378 m_storageArea = 0;378 m_storageArea = nullptr; 379 379 } 380 380
Note:
See TracChangeset
for help on using the changeset viewer.