summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-05-06 19:08:35 +0000
committerNicholas Clark <nick@ccl4.org>2005-05-06 19:08:35 +0000
commitc3929b7290197fd6055681e2dabb11ad55efccae (patch)
treee71a2ddd9091ed30f2a9b15b4403e7c3c87d2ceb
parentb1135e3d40203a90e9ea126ad842db6295e76709 (diff)
downloadperl-c3929b7290197fd6055681e2dabb11ad55efccae.tar.gz
Ooops. Wise man tests with ithreads before commiting. D'oh!
p4raw-id: //depot/perl@24409
-rw-r--r--sv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sv.c b/sv.c
index 64eea01291..c79d527a37 100644
--- a/sv.c
+++ b/sv.c
@@ -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;