Open MacSwinarski opened 5 years ago
Leak of file descriptors in QueueFile constructor.
public QueueFile(File file) throws IOException { if (!file.exists()) initialize(file); raf = open(file); readHeader(); }
When readHeader() throws and exception raf is never closed.
readHeader()
raf
Would you accept a PR with a 1.2.4-SNAPSHOT branch with the fix?
Leak of file descriptors in QueueFile constructor.
When
readHeader()
throws and exceptionraf
is never closed.