Change 34342 by [EMAIL PROTECTED] on 2008/09/11 10:59:29
Integrate:
[ 34338]
Subject: Re: blead with -Dusemymalloc fails on t/comp/hints.t
From: Vincent Pit <[EMAIL PROTECTED]>
Date: Wed, 10 Sep 2008 22:59:14 +0200
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/maint-5.10/perl/hv.c#4 integrate
Differences ...
==== //depot/maint-5.10/perl/hv.c#4 (text) ====
Index: perl/hv.c
--- perl/hv.c#3~33942~ 2008-05-27 18:21:26.000000000 -0700
+++ perl/hv.c 2008-09-11 03:59:29.000000000 -0700
@@ -1077,7 +1077,7 @@
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)
End of Patch.