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


Reply via email to