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 9f7d9ef commit 16f6ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velox/common/memory/HashStringAllocator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ void HashStringAllocator::clear() {
if (header->isFree()) {
// No-op
} else {
// Continued block & free block
// Continued block & Non-free block.
cumulativeBytes_ -= header->size() + sizeof(Header);
}
header = reinterpret_cast<Header*>(header->end());
Expand Down

0 comments on commit 16f6ff9

Please sign in to comment.