Skip to content

Commit 0f2fce7

Browse files
committedAug 3, 2023
8313632: ciEnv::dump_replay_data use fclose
Reviewed-by: thartmann, lucy
1 parent ab1c212 commit 0f2fce7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎src/hotspot/share/ci/ciEnv.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -1708,8 +1708,10 @@ void ciEnv::dump_replay_data(int compile_id) {
17081708
fileStream replay_data_stream(replay_data_file, /*need_close=*/true);
17091709
dump_replay_data(&replay_data_stream);
17101710
tty->print_cr("# Compiler replay data is saved as: %s", buffer);
1711+
fclose(replay_data_file);
17111712
} else {
17121713
tty->print_cr("# Can't open file to dump replay data.");
1714+
close(fd);
17131715
}
17141716
}
17151717
}
@@ -1732,8 +1734,10 @@ void ciEnv::dump_inline_data(int compile_id) {
17321734
replay_data_stream.flush();
17331735
tty->print("# Compiler inline data is saved as: ");
17341736
tty->print_cr("%s", buffer);
1737+
fclose(inline_data_file);
17351738
} else {
17361739
tty->print_cr("# Can't open file to dump inline data.");
1740+
close(fd);
17371741
}
17381742
}
17391743
}

0 commit comments

Comments
 (0)