Difference between revisions of "Talk:Unreleased Resource"
From OWASP
(New page: an even more vicious example for java is the following: { Runtime rt = Runtime.getRuntime(); Process p = rt.exec("ls"); } This implicitely creates three opened streams (input, ou...) |
(No difference)
|
Latest revision as of 15:46, 5 January 2009
an even more vicious example for java is the following: { Runtime rt = Runtime.getRuntime(); Process p = rt.exec("ls"); }
This implicitely creates three opened streams (input, output and error) which should be closed.