From: Dave Mitchell Date: Sat, 14 May 2005 15:11:30 +0000 (+0000) Subject: initialize the PL_xpvgv_[arena]root vars during clone X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7552b40b42f05c4f726b9f540418bd3b8a9c5866;p=p5sagit%2Fp5-mst-13.2.git initialize the PL_xpvgv_[arena]root vars during clone p4raw-id: //depot/perl@24467 --- diff --git a/sv.c b/sv.c index 2536594..3d4d5b2 100644 --- a/sv.c +++ b/sv.c @@ -11741,6 +11741,8 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_xpvhv_root = NULL; PL_xpvmg_arenaroot = NULL; PL_xpvmg_root = NULL; + PL_xpvgv_arenaroot = NULL; + PL_xpvgv_root = NULL; PL_xpvlv_arenaroot = NULL; PL_xpvlv_root = NULL; PL_xpvbm_arenaroot = NULL;