From: Doug MacEachern Date: Sun, 9 Jun 2002 17:07:11 +0000 (-0700) Subject: [patch] ptr_table_store X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cba2fd88758e554cd86f91751596696bfd7d3f5f;p=p5sagit%2Fp5-mst-13.2.git [patch] ptr_table_store Message-ID: p4raw-id: //depot/perl@17154 --- diff --git a/sv.c b/sv.c index da051f7..4f38159 100644 --- a/sv.c +++ b/sv.c @@ -8757,7 +8757,6 @@ Perl_ptr_table_store(pTHX_ PTR_TBL_t *tbl, void *oldv, void *newv) for (tblent = *otblent; tblent; i=0, tblent = tblent->next) { if (tblent->oldval == oldv) { tblent->newval = newv; - tbl->tbl_items++; return; } }