diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-06-13 08:25:53 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-06-13 08:25:53 +0000 |
commit | a227dc4778e24da2c5bc2ffad02a89310996ff78 (patch) | |
tree | ceeebe265391231a5943490cd85530adeb9604da /sv.c | |
parent | 66b4b7e7e87f9998c0916534e3aa320f87a5174e (diff) | |
download | perl-a227dc4778e24da2c5bc2ffad02a89310996ff78.tar.gz |
We no longer need PL_shared_hek_table
p4raw-id: //depot/perl@24816
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -11776,8 +11776,6 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, /* create SV map for pointer relocation */ PL_ptr_table = ptr_table_new(); - /* and one for finding shared hash keys quickly */ - PL_shared_hek_table = ptr_table_new(); /* initialize these special pointers as early as possible */ SvANY(&PL_sv_undef) = NULL; @@ -12407,8 +12405,6 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags, if (!(flags & CLONEf_KEEP_PTR_TABLE)) { ptr_table_free(PL_ptr_table); PL_ptr_table = NULL; - ptr_table_free(PL_shared_hek_table); - PL_shared_hek_table = NULL; } /* Call the ->CLONE method, if it exists, for each of the stashes |