diff options
author | Doug MacEachern <dougm@covalent.net> | 2001-06-18 09:24:22 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-18 22:30:43 +0000 |
commit | 771208afd937a008c2ced72cfe214c2dbc98985e (patch) | |
tree | bd9fff8940639b540054814641d5c2475320477a /sv.c | |
parent | 451be7b116e8b0e099d3a444fe04e0d21895efcb (diff) | |
download | perl-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |