Author: violetagg Date: Fri Nov 1 07:46:57 2013 New Revision: 1537846 URL: http://svn.apache.org/r1537846 Log: Merged revision 1537835 from tomcat/trunk: Close the stream after using it.
Modified: tomcat/tc7.0.x/trunk/ (props changed) tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Propchange: tomcat/tc7.0.x/trunk/ ------------------------------------------------------------------------------ Merged /tomcat/trunk:r1537835 Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java?rev=1537846&r1=1537845&r2=1537846&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java (original) +++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/ContextConfig.java Fri Nov 1 07:46:57 2013 @@ -2298,6 +2298,12 @@ public class ContextConfig implements Li } catch (IOException e) { log.debug(sm.getString("contextConfig.invalidSciHandlesTypes", className), e); + } finally { + try { + is.close(); + } catch (IOException e) { + // ignore + } } } } Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1537846&r1=1537845&r2=1537846&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original) +++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Fri Nov 1 07:46:57 2013 @@ -106,6 +106,10 @@ <code>SendHandler.onResult()</code> when there is a chance that the current thread also initiated the write. (markt) </fix> + <fix> + Prevent file descriptors leak and ensure that files are closed when + configuring the web application. (violetagg) + </fix> </changelog> </subsection> <subsection name="Coyote"> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org