diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-01-02 21:50:55 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-01-02 21:50:55 +0000 |
commit | ff8dabfa5b87d11f875cfd5faa30b45d10989866 (patch) | |
tree | c0577e00ba2960777d97321d2f6f9bbee01b18b4 /sv.c | |
parent | 18f651c18a8478bb824cd441f48d37ddf2f51707 (diff) | |
download | perl-ff8dabfa5b87d11f875cfd5faa30b45d10989866.tar.gz |
stop DEBUG_LEAKING_SCALARS producing spurious memory pool errors
(change #25775 wasn't complete)
p4raw-link: @25775 on //depot/perl: 22162ca81623f0ce6683af5e97b91bf10ad89079
p4raw-id: //depot/perl@26587
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -9333,11 +9333,7 @@ Perl_sv_dup(pTHX_ const SV *sstr, CLONE_PARAMS* param) dstr->sv_debug_line = sstr->sv_debug_line; dstr->sv_debug_inpad = sstr->sv_debug_inpad; dstr->sv_debug_cloned = 1; -# ifdef NETWARE dstr->sv_debug_file = savepv(sstr->sv_debug_file); -# else - dstr->sv_debug_file = savesharedpv(sstr->sv_debug_file); -# endif #endif ptr_table_store(PL_ptr_table, sstr, dstr); |