File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1708,8 +1708,10 @@ void ciEnv::dump_replay_data(int compile_id) {
1708
1708
fileStream replay_data_stream (replay_data_file, /* need_close=*/ true );
1709
1709
dump_replay_data (&replay_data_stream);
1710
1710
tty->print_cr (" # Compiler replay data is saved as: %s" , buffer);
1711
+ fclose (replay_data_file);
1711
1712
} else {
1712
1713
tty->print_cr (" # Can't open file to dump replay data." );
1714
+ close (fd);
1713
1715
}
1714
1716
}
1715
1717
}
@@ -1732,8 +1734,10 @@ void ciEnv::dump_inline_data(int compile_id) {
1732
1734
replay_data_stream.flush ();
1733
1735
tty->print (" # Compiler inline data is saved as: " );
1734
1736
tty->print_cr (" %s" , buffer);
1737
+ fclose (inline_data_file);
1735
1738
} else {
1736
1739
tty->print_cr (" # Can't open file to dump inline data." );
1740
+ close (fd);
1737
1741
}
1738
1742
}
1739
1743
}
You can’t perform that action at this time.
0 commit comments