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 /hv.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 'hv.c')
-rw-r--r-- | hv.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -2674,10 +2674,9 @@ Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *chain) /* =for apidoc refcounted_he_new -Creates a new C<struct refcounted_he>. Assumes ownership of one reference -to I<value>. As S<key> is copied into a shared hash key, all references remain -the property of the caller. The C<struct refcounted_he> is returned with a -reference count of 1. +Creates a new C<struct refcounted_he>. As S<key> is copied, and value is +stored in a compact form, all references remain the property of the caller. +The C<struct refcounted_he> is returned with a reference count of 1. =cut */ |