summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-09-28 20:46:30 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-09-28 20:46:30 +0000
commited4fbbdffc43c03cacfadbe3c8c07ebfe0c23427 (patch)
treefd063fc9ea33c7be96772845331722aad4f55472 /scope.c
parentab710249878b07e1de3f236e6607b6e4a0ea163d (diff)
downloadperl-ed4fbbdffc43c03cacfadbe3c8c07ebfe0c23427.tar.gz
fix various 5.00552 mishaps (fixes suggested by Jan Dubois,
Kurt Starsinic, Spider Boardman, Dan Sugalski and Albert Dvornik) p4raw-id: //depot/perl@1899
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/scope.c b/scope.c
index 5ba56d2142..b603641615 100644
--- a/scope.c
+++ b/scope.c
@@ -144,9 +144,7 @@ free_tmps(void)
SV* sv = PL_tmps_stack[PL_tmps_ix];
PL_tmps_stack[PL_tmps_ix--] = Nullsv;
if (sv) {
-#ifdef DEBUGGING
SvTEMP_off(sv);
-#endif
SvREFCNT_dec(sv); /* note, can modify tmps_ix!!! */
}
}