NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
cloning (Score:2)
None of the above. Storable dclone
$ perl -e 'use Clone qw(clone); $a = \$b; undef $a; $c = clone $a;'
Segmentation fault
That bug is 3 months old now [cpan.org] and untouched, despite the fact that the fix is known [cpan.org]
Reply to This
Re:cloning (Score:2)
My own Object::Clone does not suffer from the same problem, maybe it is because I use it in an strictly OOP way - it might have to require some more testing.
I will check out Storables dclone