diff options
author | Vincent Pit <perl@profvince.com> | 2008-09-11 00:59:14 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-09-11 07:53:36 +0000 |
commit | 31f0e52e4a8d663c64567e10670470e8650e0a20 (patch) | |
tree | 57e339e97ba6e6ff4347877ff8a7c5abd9e93638 /hv.c | |
parent | a6c9a8153fb7a55ac70f2d697cf6020eee8fc5f6 (diff) | |
download | perl-31f0e52e4a8d663c64567e10670470e8650e0a20.tar.gz |
Re: blead with -Dusemymalloc fails on t/comp/hints.t
Message-ID: <48C83522.9010804@profvince.com>
p4raw-id: //depot/perl@34338
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1094,7 +1094,7 @@ S_hsplit(pTHX_ HV *hv) return; } if (SvOOK(hv)) { - Copy(&a[oldsize * sizeof(HE*)], &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux); + Move(&a[oldsize * sizeof(HE*)], &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux); } #else Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize) |