Skip to content

Commit fc0d883

Browse files
committedAug 21, 2020
8252149: Compilation error after JDK-8252043
Reviewed-by: hseigel
1 parent e56002c commit fc0d883

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/hotspot/share/classfile/classLoaderDataGraph.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,8 @@ void ClassLoaderDataGraph::purge(bool at_safepoint) {
586586
// If we're purging metadata at a safepoint, clean remaining
587587
// metaspaces if we need to.
588588
if (at_safepoint) {
589-
if (_should_clean_deallocate_lists || InstanceKlass::has_previous_versions()) {
589+
_safepoint_cleanup_needed = true; // tested and reset next.
590+
if (should_clean_metaspaces_and_reset()) {
590591
walk_metadata_and_clean_metaspaces();
591592
}
592593
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.