From: rkinyon@cpan.org Date: Sat, 28 Jun 2008 04:12:53 +0000 (+0000) Subject: Added a comment as to where an allocation error is occurring that crashes perl X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBM-Deep.git;a=commitdiff_plain;h=10c0ce82db82427da716177fb2adc2c6e62a695b Added a comment as to where an allocation error is occurring that crashes perl git-svn-id: http://svn.ali.as/cpan/trunk/DBM-Deep@3649 88f4d9cd-8a04-0410-9d60-8f63309c3137 --- diff --git a/lib/DBM/Deep.pm b/lib/DBM/Deep.pm index 56ecc0c..5e67af1 100644 --- a/lib/DBM/Deep.pm +++ b/lib/DBM/Deep.pm @@ -82,6 +82,8 @@ sub DESTROY { # If we have an error, don't flush - we might be flushing bad stuff. -RobK, 2008-06-26 die $@ if $@; + #XXX For some reason, this causes an allocation error in the final scope close + # of t/08_deephash.t. -RobK, 2008-06-28 $self->_get_self->_engine->flush; }