On Mon, 18 Jun 2001, Stas Bekman wrote:
 
> instead of using $cgi, I've left $query. So I had segfaults with the
> following trace:
> 
> Program received signal SIGSEGV, Segmentation fault.
> [Switching to Thread 1026 (LWP 19168)]
> 0x4024a753 in Perl_gv_fetchpv (my_perl=0x81b36e0, nambeg=0x81b3cb5
> "query",

here's the fix..

--- sv.c        2001/06/18 16:06:48     1.1.1.49
+++ sv.c        2001/06/18 23:19:46
@@ -9680,6 +9680,7 @@
     /* symbol tables */
     PL_defstash                = hv_dup_inc(proto_perl->Tdefstash);
     PL_curstash                = hv_dup(proto_perl->Tcurstash);
+    PL_nullstash       = hv_dup(proto_perl->Inullstash);
     PL_debstash                = hv_dup(proto_perl->Idebstash);
     PL_globalstash     = hv_dup(proto_perl->Iglobalstash);
     PL_curstname       = sv_dup_inc(proto_perl->Icurstname);



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to