summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorVincent Pit <perl@profvince.com>2008-09-11 00:59:14 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-09-11 07:53:36 +0000
commit31f0e52e4a8d663c64567e10670470e8650e0a20 (patch)
tree57e339e97ba6e6ff4347877ff8a7c5abd9e93638 /hv.c
parenta6c9a8153fb7a55ac70f2d697cf6020eee8fc5f6 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hv.c b/hv.c
index 24d9150e28..c394e73fb0 100644
--- a/hv.c
+++ b/hv.c
@@ -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)