[Bleeding] Fixed file handle leak in /timings command. Addresses BUKKIT-853

By: Score_Under <seejay.11@gmail.com>
This commit is contained in:
Bukkit/Spigot 2012-02-25 17:39:54 +00:00
parent 9ebb2f13de
commit e7c9a43100

View file

@ -53,9 +53,10 @@ public class TimingsCommand extends Command {
File timings = new File(timingFolder, "timings.txt");
File names = null;
while (timings.exists()) timings = new File(timingFolder, "timings" + (++index) + ".txt");
PrintStream fileTimings = null;
PrintStream fileNames = null;
try {
PrintStream fileTimings = new PrintStream(timings);
PrintStream fileNames = null;
fileTimings = new PrintStream(timings);
if (separate) {
names = new File(timingFolder, "names" + index + ".txt");
fileNames = new PrintStream(names);
@ -87,6 +88,13 @@ public class TimingsCommand extends Command {
sender.sendMessage("Timings written to " + timings.getPath());
if (separate) sender.sendMessage("Names written to " + names.getPath());
} catch (IOException e) {
} finally {
if (fileTimings != null) {
fileTimings.close();
}
if (fileNames != null) {
fileNames.close();
}
}
}
return true;