I'm developing an application using Perl 5.10, HTML::Mason, and apache 2.2. This is the first time I've used Perl 5.10 for a big project. I get a strange behavior every once in a while. The application dies with a very strange error:

panic: attempt to copy value
to a freed scalar b87acf34 at ...

I guess my question is it Perl 5.10 because I've never experienced this before, or is it some other faulty dependency?

Thanks a lot!

link|improve this question

40% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Not sure if this has anything to do with your error (probably not), but mod_perl+mason+perl5.10 is a no go. Perl 5.10 introduced at least one big bug that leads to segmentation faults under some conditions: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480480#24

link|improve this answer
Thanks for the info. I'm a messy person I've should have researched it before. Probably I'll have to downgrade my Perl distribution to 5.8.8. Cheers. – marghi Mar 27 '09 at 13:11
Yep perl 5.10 is to blame I downgraded to perl 5.8.8 and I stopped getting errors. Sweet – marghi Mar 27 '09 at 15:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.