summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-06-13 08:25:53 +0000
committerNicholas Clark <nick@ccl4.org>2005-06-13 08:25:53 +0000
commita227dc4778e24da2c5bc2ffad02a89310996ff78 (patch)
treeceeebe265391231a5943490cd85530adeb9604da /sv.c
parent66b4b7e7e87f9998c0916534e3aa320f87a5174e (diff)
downloadperl-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.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sv.c b/sv.c
index 9f2049ee51..d101c1d823 100644
--- a/sv.c
+++ b/sv.c
@@ -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