diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-10-21 14:52:35 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-10-21 14:52:35 +0000 |
commit | a1ea730d96bcc07b3d616a92ace3927de8290cdd (patch) | |
tree | 725e0b5ba356e7a24c6a9304ad5403ca773cb006 /sv.c | |
parent | 7fcdafbdb0bffcc321d3a9c54e5d13442d621313 (diff) | |
download | perl-a1ea730d96bcc07b3d616a92ace3927de8290cdd.tar.gz |
PerlIO layer table as PL_perlio (per-interpreter)
p4raw-id: //depot/perlio@12544
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -9765,9 +9765,12 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, PL_origargv[i] = SAVEPV(proto_perl->Iorigargv[i]); } - param->stashes = newAV(); /* Setup array of objects to call clone on */ +#ifdef PERLIO_LAYERS + /* Clone PerlIO table as soon as we can handle general xx_dup() */ + PerlIO_clone(aTHX_ proto_perl->Iperlio, param); +#endif PL_envgv = gv_dup(proto_perl->Ienvgv, param); PL_incgv = gv_dup(proto_perl->Iincgv, param); |