diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-08 02:27:57 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-08 02:27:57 +0000 |
commit | e63a07aa01fbea927c64d4bc9f16cdc3e55c7b78 (patch) | |
tree | b7f1b4a614e921c6b95d74a6aa93911591dc1569 /hv.c | |
parent | d24fc3362d7709e1071453a006f23c5f5ba528ee (diff) | |
download | perl-e63a07aa01fbea927c64d4bc9f16cdc3e55c7b78.tar.gz |
typo in newHVhv()
p4raw-id: //depot/perl@2214
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -832,14 +832,13 @@ HV * newHVhv(HV *ohv) { register HV *hv; - register XPVHV* xhv; STRLEN hv_max = ohv ? HvMAX(ohv) : 0; STRLEN hv_fill = ohv ? HvFILL(ohv) : 0; hv = newHV(); while (hv_max && hv_max + 1 >= hv_fill * 2) hv_max = hv_max / 2; /* Is always 2^n-1 */ - ((XPVHV*)SvANY(hv))->xhv_max = hv_max; + HvMAX(hv) = hv_max; if (!hv_fill) return hv; @@ -855,7 +854,7 @@ newHVhv(HV *ohv) HE *hv_eiter = HvEITER(ohv); /* current entry of iterator */ /* Slow way */ - hv_iterinit(hv); + hv_iterinit(ohv); while (entry = hv_iternext(ohv)) { hv_store(hv, HeKEY(entry), HeKLEN(entry), SvREFCNT_inc(HeVAL(entry)), HeHASH(entry)); |