Potential Resource leak in IOUtils.java
---------------------------------------

                 Key: MAPREDUCE-2387
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-2387
             Project: Hadoop Map/Reduce
          Issue Type: Bug
    Affects Versions: 0.23.0
            Reporter: Devaraj K




{code:title=IOUtils.java|borderStyle=solid}


    try {
      copyBytes(in, out, buffSize);
    } finally {
      if(close) {
        out.close();
        in.close();
      }
    }
 
{code} 

In the above code if any exception throws from the out.close() statement, 
in.close() statement will not execute and the input stream will not be closed.


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to