Changeset 115586 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Apr 28, 2012, 3:50:02 PM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r115580 r115586 1 2012-04-28 Sam Weinig <[email protected]> 2 3 Try to fix the Qt build. 4 5 * heap/Heap.cpp: 6 (JSC::Heap::lastChanceToFinalize): 7 1 8 2012-04-28 Geoffrey Garen <[email protected]> 2 9 -
trunk/Source/JavaScriptCore/heap/Heap.cpp
r115580 r115586 367 367 // FIXME: Make this a release-mode crash once we're sure no one's doing this. 368 368 if (size_t size = m_protectedValues.size()) 369 WTFLogAlways("ERROR: JavaScriptCore heap deallocated while %ld values were still protected", s ize);369 WTFLogAlways("ERROR: JavaScriptCore heap deallocated while %ld values were still protected", static_cast<unsigned long>(size)); 370 370 371 371 m_weakSet.finalizeAll();
Note:
See TracChangeset
for help on using the changeset viewer.