diff options
author | dgp <dgp@noemail.net> | 2002-05-31 23:21:10 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-05-31 23:21:10 (GMT) |
commit | 5b29dbb31c7555be0a146b4b96ebdff1af4a24c7 (patch) | |
tree | 27a2809e0a1766bf5015a05b4dface14820c48dc /library | |
parent | e96af829a329e7803cebebfea974961171f4998c (diff) | |
download | tcl-5b29dbb31c7555be0a146b4b96ebdff1af4a24c7.zip tcl-5b29dbb31c7555be0a146b4b96ebdff1af4a24c7.tar.gz tcl-5b29dbb31c7555be0a146b4b96ebdff1af4a24c7.tar.bz2 |
* Fixed leak of slave interp in [pkg_mkIndex].
Thanks to Helmut for report. [Bug 550534]
FossilOrigin-Name: 1736e8e641c5c6dad5aa4f61c2178c17b6575397
Diffstat (limited to 'library')
-rw-r--r-- | library/package.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/package.tcl b/library/package.tcl index 4dc1859..91b5831 100644 --- a/library/package.tcl +++ b/library/package.tcl @@ -3,7 +3,7 @@ # utility procs formerly in init.tcl which can be loaded on demand # for package management. # -# RCS: @(#) $Id: package.tcl,v 1.18 2001/07/21 20:26:42 dgp Exp $ +# RCS: @(#) $Id: package.tcl,v 1.19 2002/05/31 23:21:12 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1998 Sun Microsystems, Inc. @@ -380,8 +380,8 @@ proc pkg_mkIndex {args} { if {$doVerbose} { tclLog "processed $file" } - interp delete $c } + interp delete $c } append index "# Tcl package index file, version 1.1\n" |