From 2e6d7a116a3d6bbd7342cb732d0433008df076ad Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Thu, 3 May 2007 14:23:14 +0000 Subject: [PATCH] Initialise PL_delayedisa on thread clone. p4raw-id: //depot/perl@31125 --- sv.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.7.4