Skip to content

Commit

Permalink
Fix HashStringAllocator
Browse files Browse the repository at this point in the history
  • Loading branch information
wypb committed Jun 19, 2024
1 parent 9ed1081 commit 9f7d9ef
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion velox/common/memory/HashStringAllocator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,6 @@ void HashStringAllocator::free(Header* header) {
removeFromFreeList(next);
headerToFree->setSize(
headerToFree->size() + next->size() + sizeof(Header));
next->setFree();
next = reinterpret_cast<Header*>(headerToFree->end());
VELOX_CHECK(next->isArenaEnd() || !next->isFree());
}
Expand Down

0 comments on commit 9f7d9ef

Please sign in to comment.