summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@covalent.net>2001-06-18 09:24:22 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-18 22:30:43 +0000
commit771208afd937a008c2ced72cfe214c2dbc98985e (patch)
treebd9fff8940639b540054814641d5c2475320477a /sv.c
parent451be7b116e8b0e099d3a444fe04e0d21895efcb (diff)
downloadperl-771208afd937a008c2ced72cfe214c2dbc98985e.tar.gz
PL_nullstash + perl_clone()
Message-ID: <Pine.LNX.4.21.0106181621040.11974-100000@mako.covalent.net> p4raw-id: //depot/perl@10692
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sv.c b/sv.c
index 42a995cffe..0bae3ce72a 100644
--- a/sv.c
+++ b/sv.c
@@ -9680,6 +9680,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
/* symbol tables */
PL_defstash = hv_dup_inc(proto_perl->Tdefstash);
PL_curstash = hv_dup(proto_perl->Tcurstash);
+ PL_nullstash = hv_dup(proto_perl->Inullstash);
PL_debstash = hv_dup(proto_perl->Idebstash);
PL_globalstash = hv_dup(proto_perl->Iglobalstash);
PL_curstname = sv_dup_inc(proto_perl->Icurstname);