summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2005-05-14 15:11:30 +0000
committerDave Mitchell <davem@fdisolutions.com>2005-05-14 15:11:30 +0000
commit7552b40b42f05c4f726b9f540418bd3b8a9c5866 (patch)
treeb3ac30d1d0cc89dddda45e5bcb55ba92b17c378e
parentcf083cf9c54865f7b565dc779f9ce609999b4bb3 (diff)
downloadperl-7552b40b42f05c4f726b9f540418bd3b8a9c5866.tar.gz
initialize the PL_xpvgv_[arena]root vars during clone
p4raw-id: //depot/perl@24467
-rw-r--r--sv.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sv.c b/sv.c
index 25365943ef..3d4d5b2d2b 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;