diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-05-19 21:44:14 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-05-19 21:44:14 +0000 |
commit | ec2a1de722601129850327b38324ac227c58147a (patch) | |
tree | 878e2d1ea608110670452f49b076da5b00a58cc6 /mg.c | |
parent | d2317f5992d5f2c94bab7f9255eb080a8a677efb (diff) | |
download | perl-ec2a1de722601129850327b38324ac227c58147a.tar.gz |
Correct Perl_refcounted_he_chain_2hv() and its caller - it doesn't
store a reference to the value, so don't pass it in a new SV.
p4raw-id: //depot/perl@28245
Diffstat (limited to 'mg.c')
-rw-r--r-- | mg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2877,7 +2877,7 @@ Perl_magic_sethint(pTHX_ SV *sv, MAGIC *mg) PL_hints |= HINT_LOCALIZE_HH; PL_compiling.cop_hints = Perl_refcounted_he_new(aTHX_ PL_compiling.cop_hints, - (SV *)mg->mg_ptr, newSVsv(sv)); + (SV *)mg->mg_ptr, sv); return 0; } |