You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2014/02/25 05:07:21 UTC

[jira] [Created] (HADOOP-10362) Closing of Reader in HadoopArchives#HArchiveInputFormat#getSplits() should check against null

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)