Skip Menu |

This queue is for tickets about the Class-AutoloadCAN CPAN distribution.

Report information
The Basics
Id: 124678
Status: new
Priority: 0/
Queue: Class-AutoloadCAN

People
Owner: Nobody in particular
Requestors: 'spro^^*%*^6ut# [...] &$%*c
Cc: btilly [...] gmail.com
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



CC: btilly [...] gmail.com
Subject: Does not handle DESTROY
A simple script like this blows the stack: use Class::AutoloadCAN; $SIG{__DIE__} = sub { $x = bless []; undef $x}; die The problem is that the AUTOLOAD that gets installed in main dies when called with DESTROY as its argument. Because I bless and destroy an object in a __DIE__ handler, it tries to do it again and again....