From: Nicholas Clark Date: Thu, 3 May 2007 14:23:14 +0000 (+0000) Subject: Initialise PL_delayedisa on thread clone. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2e6d7a116a3d6bbd7342cb732d0433008df076ad;p=p5sagit%2Fp5-mst-13.2.git Initialise PL_delayedisa on thread clone. p4raw-id: //depot/perl@31125 --- diff --git a/sv.c b/sv.c index 832888d..0de5bb1 100644 --- a/sv.c +++ b/sv.c @@ -11110,6 +11110,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_sub_generation = proto_perl->Isub_generation; PL_isarev = hv_dup_inc(proto_perl->Iisarev, param); + PL_delayedisa = hv_dup_inc(proto_perl->Tdelayedisa, param); /* funky return mechanisms */ PL_forkprocess = proto_perl->Iforkprocess;