From 7552b40b42f05c4f726b9f540418bd3b8a9c5866 Mon Sep 17 00:00:00 2001 From: Dave Mitchell Date: Sat, 14 May 2005 15:11:30 +0000 Subject: [PATCH] initialize the PL_xpvgv_[arena]root vars during clone p4raw-id: //depot/perl@24467 --- sv.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 1.8.3.1