| Index: third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| diff --git a/third_party/WebKit/Source/platform/heap/HeapPage.cpp b/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| index b7da90ae531826a4df862d5d38dc523e66d1271c..cf22b5e0c9fc47a7f5602915a85868b6a459ae31 100644
|
| --- a/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/HeapPage.cpp
|
| @@ -692,7 +692,7 @@ bool NormalPageArena::shrinkObject(HeapObjectHeader* header, size_t newSize)
|
| Address NormalPageArena::lazySweepPages(size_t allocationSize, size_t gcInfoIndex)
|
| {
|
| ASSERT(!hasCurrentAllocationArea());
|
| - TemporaryChange<bool> isLazySweeping(m_isLazySweeping, true);
|
| + TemporaryChange<bool> isLazySweeping(&m_isLazySweeping, true);
|
| Address result = nullptr;
|
| while (m_firstUnsweptPage) {
|
| BasePage* page = m_firstUnsweptPage;
|
|
|