summaryrefslogtreecommitdiffstats
path: root/generic/tclEncoding.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-12-02 23:24:54 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-12-02 23:24:54 (GMT)
commit280176a51c41883a5e086a971004ec6e6ab1820e (patch)
treec793de357ee6b036d50f0a0bc464a7cd38856f2d /generic/tclEncoding.c
parente05bd52770456e6db2d99f2112bb78fae3619235 (diff)
downloadtcl-280176a51c41883a5e086a971004ec6e6ab1820e.zip
tcl-280176a51c41883a5e086a971004ec6e6ab1820e.tar.gz
tcl-280176a51c41883a5e086a971004ec6e6ab1820e.tar.bz2
* generic/tclUtil.c (TclSetProcessGlobalValue): Handle the case
where a ProcessGlobalValue might be assigned to itself. * generic/tclEncoding.c (MakeFileMap): Correct refcounting errors managing values returned by TclPathPart (with refCount of 1!) that led to a memory leak. [Bug 1077474].
Diffstat (limited to 'generic/tclEncoding.c')
-rw-r--r--generic/tclEncoding.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c
index 1d2c0b8..3cbf450 100644
--- a/generic/tclEncoding.c
+++ b/generic/tclEncoding.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclEncoding.c,v 1.29 2004/12/01 23:18:50 dgp Exp $
+ * RCS: @(#) $Id: tclEncoding.c,v 1.30 2004/12/02 23:24:57 dgp Exp $
*/
#include "tclInt.h"
@@ -410,10 +410,10 @@ MakeFileMap()
Tcl_Obj *encodingName, *file;
file = TclPathPart(NULL, filev[j], TCL_PATH_TAIL);
- Tcl_IncrRefCount(file);
encodingName = TclPathPart(NULL, file, TCL_PATH_ROOT);
- Tcl_IncrRefCount(encodingName);
Tcl_DictObjPut(NULL, map, encodingName, directory);
+ Tcl_DecrRefCount(file);
+ Tcl_DecrRefCount(encodingName);
}
Tcl_DecrRefCount(matchFileList);
Tcl_DecrRefCount(directory);