Code Correctness: Erroneous finalize() Method
From OWASP
This page was marked to be reviewed for deletion.
#REDIRECT Failure to follow guideline/specification
Last revision (mm/dd/yy): 5/27/2009
Contents |
Description
This finalize() method does not call super.finalize().
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."
Risk Factors
TBD
Examples
The following method omits the call to super.finalize().
protected void finalize() {
discardNative();
}
Related Attacks
Related Vulnerabilities
Related Controls
Related Technical Impacts
References
- [1] J. Gosling, B. Joy, G. Steele, G. Bracha. The Java Language Specification, Second Edition. Addison-Wesley, 2000.

