On Thu, 3 Aug 2000, Jamie Krasnoo wrote:
> Program received signal SIGSEGV, Segmentation fault.
> 0x8086ef0 in perl_handler_ismethod ()
yes, cvs should fix this, here's the diff:
--- mod_perl.c 2000/05/25 18:06:23 1.121
+++ mod_perl.c 2000/06/02 17:23:07 1.122
@@ -1222,7 +1222,7 @@
}
#ifdef CVf_METHOD
- if (CvFLAGS(cv) & CVf_METHOD) {
+ if (cv && (CvFLAGS(cv) & CVf_METHOD)) {
is_method = 1;
}
#endif
- does anyone have a fix for this? Jamie Krasnoo
- Re: does anyone have a fix for this? Eric Cholet
- Seg fault (11) backtrace (long email) - was RE: d... Jamie Krasnoo
- Re: does anyone have a fix for this? Doug MacEachern
- Re: does anyone have a fix for this? Doug MacEachern
