Bizarre copy of ARRAY in sassign at C:/progfile/Perl-5.8.8/lib/Carp/Heavy.pm line 45.
This also manifests itself as: "panic: attempt to copy freed scalar"
Patch for Carp in case anyone is interested. Find the call to format_arg in Carp.pm or Carp/Heavy.pm (depending on version), and replace with (prefix @args with my depending on version also. E.g. in 5.8.8 it's "my @args" in Heavy.pm, in 5.14.1 it's just "@args" in Carp.pm):
@args = map {
local $@;
my $tmp = eval { Carp::format_arg($_) };
defined($tmp) ? $tmp : 'unknown';
} @DB::args;
And now instead of an unhelpful error message referring to a line in Carp, you'll get the stack trace you wanted, albeit with one or more 'unknown' arguments shown in the function calls.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.