diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-06 19:08:35 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-06 19:08:35 +0000 |
commit | c3929b7290197fd6055681e2dabb11ad55efccae (patch) | |
tree | e71a2ddd9091ed30f2a9b15b4403e7c3c87d2ceb | |
parent | b1135e3d40203a90e9ea126ad842db6295e76709 (diff) | |
download | perl-c3929b7290197fd6055681e2dabb11ad55efccae.tar.gz |
Ooops. Wise man tests with ithreads before commiting. D'oh!
p4raw-id: //depot/perl@24409
-rw-r--r-- | sv.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -10434,9 +10434,9 @@ S_more_pte(pTHX) { register struct ptr_tbl_ent* pte; register struct ptr_tbl_ent* pteend; - New(0, ptr, PERL_ARENA_SIZE/sizeof(struct ptr_tbl_ent), struct ptr_tbl_ent); - ptr->next = PL_pte_arenaroot; - PL_pte_arenaroot = ptr; + New(0, pte, PERL_ARENA_SIZE/sizeof(struct ptr_tbl_ent), struct ptr_tbl_ent); + pte->next = PL_pte_arenaroot; + PL_pte_arenaroot = pte; pteend = &pte[PERL_ARENA_SIZE / sizeof(struct ptr_tbl_ent) - 1]; PL_pte_root = ++pte; |