https://issues.apache.org/bugzilla/show_bug.cgi?id=52740
Bug #: 52740
Summary: An incomplete fix for the resource leak bug in
Javadoc.java
Product: Ant
Version: unspecified
Platform: PC
Status: NEW
Severity: critical
Priority: P2
Component: Core
AssignedTo: [email protected]
ReportedBy: [email protected]
Classification: Unclassified
The fix revision 272583 was aimed to remove resource leak bugs on the
PrintWriter object "srcListWriter" (created in line 1684) in the method
"execute"of the file
"/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Javadoc.java" , but it
is incomplete.
There are some problems:
1. when "srcListWriter" isn't created successfully but the temp FileWriter
object is created successfully (at line 1685), the temp FileWriter object will
be leaked.
The best way to close such resource objects is putting such close operations
for all resource objects in the finaly block of a try-catch-finally structure
and then putting all other code in a try block.
The problem still exists in the head revision (the temp FileWriter object
created at 1723 can be leaked).
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.