You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2004/10/17 04:28:27 UTC

svn commit: rev 54946 - spamassassin/branches/3.0/lib/Mail/SpamAssassin

Author: jm
Date: Sat Oct 16 19:28:26 2004
New Revision: 54946

Modified:
   spamassassin/branches/3.0/lib/Mail/SpamAssassin/Conf.pm
Log:
bug 3895: Mail::SA::Conf::Parser::finish() method is missing; this is required for
Mail::SpamAssassin::finish() to operate.  the result is that a user of the perl
modules cannot call finish to GC the entire Spamassassin set of modules, as the
call dies.  fixed

Modified: spamassassin/branches/3.0/lib/Mail/SpamAssassin/Conf.pm
==============================================================================
--- spamassassin/branches/3.0/lib/Mail/SpamAssassin/Conf.pm	(original)
+++ spamassassin/branches/3.0/lib/Mail/SpamAssassin/Conf.pm	Sat Oct 16 19:28:26 2004
@@ -3581,7 +3581,6 @@
 
 sub finish {
   my ($self) = @_;
-  $self->{parser}->finish();
   delete $self->{parser};
   delete $self->{main};
 }