Fix the DESTROY method to actually call the close() method like it was supposed to.

git-svn-id: svn://10.0.0.236/trunk@107858 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ian%hixie.ch 2001-11-11 00:14:07 +00:00
parent 9527b379c7
commit 52581f47aa

View File

@ -96,6 +96,7 @@ sub checkAddress {
sub DESTROY {
my $self = shift;
$self->close();
$self->SUPER::DESTROY(@_);
}