Ted Yu created HADOOP-10362:
-------------------------------
Summary: Closing of Reader in
HadoopArchives#HArchiveInputFormat#getSplits() should check against null
Key: HADOOP-10362
URL: https://issues.apache.org/jira/browse/HADOOP-10362
Project: Hadoop Common
Issue Type: Bug
Reporter: Ted Yu
Priority: Minor
{code}
try {
reader = new SequenceFile.Reader(fs, src, jconf);
...
finally {
reader.close();
}
{code}
If Reader ctor throws exception, the close() method would be called on null
object.
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)