8313712: [BACKOUT] 8313632: ciEnv::dump_replay_data use fclose

Reviewed-by: mikael
This commit is contained in:
Tobias Hartmann 2023-08-03 18:08:29 +00:00
parent bb3aac6063
commit 4577147993

View File

@ -1708,10 +1708,8 @@ void ciEnv::dump_replay_data(int compile_id) {
fileStream replay_data_stream(replay_data_file, /*need_close=*/true);
dump_replay_data(&replay_data_stream);
tty->print_cr("# Compiler replay data is saved as: %s", buffer);
fclose(replay_data_file);
} else {
tty->print_cr("# Can't open file to dump replay data.");
close(fd);
}
}
}
@ -1734,10 +1732,8 @@ void ciEnv::dump_inline_data(int compile_id) {
replay_data_stream.flush();
tty->print("# Compiler inline data is saved as: ");
tty->print_cr("%s", buffer);
fclose(inline_data_file);
} else {
tty->print_cr("# Can't open file to dump inline data.");
close(fd);
}
}
}