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

Difference between revisions of "Code Correctness: Erroneous finalize() Method"

From OWASP
Jump to: navigation, search
(Description)
Line 9: Line 9:
  
 
The Java Language Specification states that it is a good practice for a finalize() method to call super.finalize().[1]
 
The Java Language Specification states that it is a good practice for a finalize() method to call super.finalize().[1]
 +
The statement above is not completely correct. The Java Language Specification 3.0 section 12.6.1 states: "This should
 +
always be done, <b>unless it is the programmer's intent to nullify the actions of the finalizer in the superclass.</b>"
  
 
==Examples ==
 
==Examples ==

Revision as of 08:22, 22 January 2007

This is a Vulnerability. To view all vulnerabilities, please see the Vulnerability Category page.

This article includes content generously donated to OWASP by MicroFocus Logo.png

Abstract

This finalize() method does not call super.finalize().

Description

The Java Language Specification states that it is a good practice for a finalize() method to call super.finalize().[1] The statement above is not completely correct. The Java Language Specification 3.0 section 12.6.1 states: "This should always be done, unless it is the programmer's intent to nullify the actions of the finalizer in the superclass."

Examples

The following method omits the call to super.finalize().

 protected void finalize() {
                discardNative();
 }

Related Threats

Related Attacks

Related Vulnerabilities

Related Countermeasures

References

[1] J. Gosling, B. Joy, G. Steele, G. Bracha. The Java Language Specification, Second Edition. Addison-Wesley, 2000.