Changeset 139638 in webkit
- Timestamp:
- Jan 14, 2013, 12:16:57 PM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r139634 r139638 1 2013-01-14 Antti Koivisto <antti@apple.com> 2 3 REGRESSION (r139218): Flaky assertion in WebCore::StorageTask::StorageTask releasing memory 4 https://bugs.webkit.org/show_bug.cgi?id=106718 5 6 Reviewed by Andreas Kling. 7 8 Type assertion was missing a new type. 9 10 * storage/StorageTask.cpp: 11 (WebCore::StorageTask::StorageTask): 12 1 13 2013-01-14 Yury Semikhatsky <yurys@chromium.org> 2 14 -
trunk/Source/WebCore/storage/StorageTask.cpp
r139218 r139638 56 56 , m_thread(0) 57 57 { 58 ASSERT(m_type == ImportOrigins || m_type == DeleteAllOrigins );58 ASSERT(m_type == ImportOrigins || m_type == DeleteAllOrigins || m_type == ReleaseFastMallocFreeMemory); 59 59 } 60 60
Note:
See TracChangeset
for help on using the changeset viewer.