diff options
author | dgp <dgp@users.sourceforge.net> | 2015-07-02 12:29:43 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2015-07-02 12:29:43 (GMT) |
commit | 2ee65349c997ec60a0e3def277a24c0f638fed78 (patch) | |
tree | 8cf83434ed090e640a4b2611e0ebbdd9314b04d3 /generic/tclIOGT.c | |
parent | dfeb9e71446a7354fd0e7551244db75e36bc3c13 (diff) | |
download | tcl-2ee65349c997ec60a0e3def277a24c0f638fed78.zip tcl-2ee65349c997ec60a0e3def277a24c0f638fed78.tar.gz tcl-2ee65349c997ec60a0e3def277a24c0f638fed78.tar.bz2 |
Revert some refcount changes on I/O structs.
These are refcounts on structs, not Tcl_Obj's. Their scheme doesn't suffer
the same difficulties and histories as Tcl_Obj's, and they need not copy
every detail, appropriate or not, from Tcl_Obj refcount management.
The "significant value" -- as dkf puts it -- for the struct refcounting scheme
is 0 not 1.
Diffstat (limited to 'generic/tclIOGT.c')
-rw-r--r-- | generic/tclIOGT.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIOGT.c b/generic/tclIOGT.c index c1ce485..7f61def 100644 --- a/generic/tclIOGT.c +++ b/generic/tclIOGT.c @@ -225,7 +225,7 @@ static void ReleaseData( TransformChannelData *dataPtr) { - if (dataPtr->refCount-- > 1) { + if (--dataPtr->refCount) { return; } ResultClear(&dataPtr->result); |