diff options
author | Jim Cromie <jcromie@cpan.org> | 2006-02-13 07:12:41 -0700 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-18 00:11:07 +0000 |
commit | d2a0f284b32a9deb0ebffbb06cf667a0ea1ea610 (patch) | |
tree | f447dfe2dda7f4f6e48523d610a9f3d008a11ddb /hv.c | |
parent | 05c462c41ad946db6e5d1f4f4e5bffc04b8bd608 (diff) | |
download | perl-d2a0f284b32a9deb0ebffbb06cf667a0ea1ea610.tar.gz |
arena-rework : consolidated patch
Message-ID: <43F0F649.9040205@gmail.com>
Tweaked somewhat to split the arena boolean from the arena_size,
and with the PTE still doubling-up with one of the SV types in the
array.
p4raw-id: //depot/perl@27215
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ S_more_he(pTHX) he = (HE*) Perl_get_arena(aTHX_ PERL_ARENA_SIZE); heend = &he[PERL_ARENA_SIZE / sizeof(HE) - 1]; - PL_body_roots[HE_SVSLOT] = ++he; + PL_body_roots[HE_SVSLOT] = he; while (he < heend) { HeNEXT(he) = (HE*)(he + 1); he++; |