diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-21 18:00:57 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-21 18:00:57 +0000 |
commit | dc8220bfca2d71384f17f046f7e05856915092e1 (patch) | |
tree | ef1391ddaec13ed3548114867303b34df0a7df6c /sv.c | |
parent | e678f8d36a88cb1c3542ecd26158b5482e6f3af3 (diff) | |
download | perl-dc8220bfca2d71384f17f046f7e05856915092e1.tar.gz |
PL_body_arenas should be set to NULL when the interpreter is cleared.
p4raw-id: //depot/perl@27262
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -642,6 +642,7 @@ Perl_sv_free_arenas(pTHX) #else S_free_arena(aTHX_ (void**) PL_body_arenas); #endif + PL_body_arenas = 0; for (i=0; i<PERL_ARENA_ROOTS_SIZE; i++) PL_body_roots[i] = 0; |