This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Talk:Unreleased Resource

From OWASP
Revision as of 15:46, 5 January 2009 by Arjanl (talk | contribs) (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...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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.