diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-12-06 10:25:57 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-12-06 10:25:57 (GMT) |
commit | 85d4482f18637feeb6418a5935859a7423a2fc03 (patch) | |
tree | 77e719010fb565487d4aecd8a193c327fac7c0ff /generic/tclNamesp.c | |
parent | d2cafa17fbc0ba124639514618fcdefecc66d927 (diff) | |
download | tcl-85d4482f18637feeb6418a5935859a7423a2fc03.zip tcl-85d4482f18637feeb6418a5935859a7423a2fc03.tar.gz tcl-85d4482f18637feeb6418a5935859a7423a2fc03.tar.bz2 |
Fix [Bug 1845320] and [Bug 1845397]
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index d4c12a8..22f3640 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -23,7 +23,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclNamesp.c,v 1.159 2007/11/28 16:50:27 dgp Exp $ + * RCS: @(#) $Id: tclNamesp.c,v 1.160 2007/12/06 10:25:58 dkf Exp $ */ #include "tclInt.h" @@ -5964,6 +5964,7 @@ TclMakeEnsemble( TCL_ENSEMBLE_PREFIX | ENSEMBLE_COMPILE); } } + Tcl_DStringFree(&buf); return ensemble; } |