summaryrefslogtreecommitdiffstats
path: root/generic/tclNamesp.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2015-07-02 12:54:57 (GMT)
committerdgp <dgp@users.sourceforge.net>2015-07-02 12:54:57 (GMT)
commitd4d66c05ba64ebd9ae204c048eebebfd76a095c2 (patch)
tree368c39db89288c324d774cfdfe3c9494dba33bbd /generic/tclNamesp.c
parent2ee65349c997ec60a0e3def277a24c0f638fed78 (diff)
downloadtcl-d4d66c05ba64ebd9ae204c048eebebfd76a095c2.zip
tcl-d4d66c05ba64ebd9ae204c048eebebfd76a095c2.tar.gz
tcl-d4d66c05ba64ebd9ae204c048eebebfd76a095c2.tar.bz2
Revert refcount changes that were not cosmetic.
Changing equality testing to inequality testing does more than make code prettier or clearer. It makes it less strict, and thus more tolerant of other bugs elsewhere. Such changes deserve separate consideration at least, not breezy entry in an otherwise "code cleanup" commit.
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r--generic/tclNamesp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c
index 3231ce6..91239f0 100644
--- a/generic/tclNamesp.c
+++ b/generic/tclNamesp.c
@@ -402,7 +402,7 @@ Tcl_PopCallFrame(
}
if (framePtr->numCompiledLocals > 0) {
TclDeleteCompiledLocalVars(iPtr, framePtr);
- if (framePtr->localCachePtr->refCount-- <= 1) {
+ if (--framePtr->localCachePtr->refCount == 0) {
TclFreeLocalCache(interp, framePtr->localCachePtr);
}
framePtr->localCachePtr = NULL;