Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8302218: CHeapBitMap::free frees with incorrect size #14079

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Fix the bug of freeing incorrect size in CHeapBitMap destructor
  • Loading branch information
quadhier committed May 22, 2023
commit bb9a90b287c09ef6b02d1b1c6a9ec70f6ef356db
2 changes: 1 addition & 1 deletion src/hotspot/share/utilities/bitMap.cpp
Expand Up @@ -131,7 +131,7 @@ CHeapBitMap::CHeapBitMap(idx_t size_in_bits, MEMFLAGS flags, bool clear)
}

CHeapBitMap::~CHeapBitMap() {
free(map(), size());
free(map(), size_in_words());
}

bm_word_t* CHeapBitMap::allocate(idx_t size_in_words) const {
Expand Down