Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Unified Diff: Source/platform/heap/Heap.cpp

Issue 1154413005: Oilpan: consistently allow allocation during finalization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.cpp
diff --git a/Source/platform/heap/Heap.cpp b/Source/platform/heap/Heap.cpp
index 30ddefbc5e4bc7c610403645b3f24137f8b91be8..d4ab0e40432e6cf8f45c5157c92622073e1e2fce 100644
--- a/Source/platform/heap/Heap.cpp
+++ b/Source/platform/heap/Heap.cpp
@@ -368,7 +368,6 @@ void BaseHeap::poisonHeap(ObjectsToPoison objectsToPoison, Poisoning poisoning)
//
// Poisoning may be limited to unmarked objects only, or apply to all.
if (poisoning == SetPoison) {
- ASSERT(!m_firstPage);
for (BasePage* page = m_firstUnsweptPage; page; page = page->next())
page->poisonObjects(objectsToPoison, poisoning);
return;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698