On Dec 29, 2007 5:21 PM, Randy Kobes <[EMAIL PROTECTED]> wrote: > This problem is perl-5.10 specific.
Yup. To elaborate from http://www.gossamer-threads.com/lists/modperl/dev/95997 Some fields in struct xpvcv got unionized into the same storage location in perl 5.10 (to shrink the struct insize), under the reasonable assumption that some fields can't be used at the same time, e.g. CvXSUBANY which is only used by XS subs and CvSTART which is only used by Perl subs. Unfortunately modperl tries to store some modperl-specific flags into CvXSUBANY of a Perl (non-XS) sub. Cheers, Roderich --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
