|
I found the problem actually. My common module has an AUTOLOAD that
allows me to say $common->foo instead of $common->{foo}. I pass
my Apache::Request ($apr) object around in this common object,
retreiving $apr by calling $common->apr and then calling param()
causes the crash. I guess the return values of these AUTOLOADed
functions are cached? Anyway, using $common->{apr} made it work. Thanks for the response :) Chris Sam Tregar wrote: On Thu, 2 Dec 2004, Chris Brown wrote: -- Chris Brown System Administrator Wavetex Inc. 903-597-7566 http://wavetex.com/-- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html |
