| Index: Source/platform/heap/Handle.h
|
| diff --git a/Source/platform/heap/Handle.h b/Source/platform/heap/Handle.h
|
| index fe1c9a6b37b3ea20e7a5ca2242597f239d7d70c3..1f8e75913755e2cd19c87e3736d1e602045e27c1 100644
|
| --- a/Source/platform/heap/Handle.h
|
| +++ b/Source/platform/heap/Handle.h
|
| @@ -211,7 +211,6 @@ private:
|
| ThreadState* state = ThreadStateFor<ThreadingTrait<T>::Affinity>::state();
|
| ASSERT(state->checkThread());
|
| m_persistentNode = state->persistentRegion()->allocatePersistentNode(this, traceCallback);
|
| - state->persistentAllocated();
|
| #if ENABLE(ASSERT)
|
| m_state = state;
|
| #endif
|
| @@ -228,7 +227,6 @@ private:
|
| // Persistent handle must be created and destructed in the same thread.
|
| ASSERT(m_state == state);
|
| state->persistentRegion()->freePersistentNode(m_persistentNode);
|
| - state->persistentFreed();
|
| }
|
| }
|
|
|
|
|