summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorsurles <surles>1999-04-20 02:08:38 (GMT)
committersurles <surles>1999-04-20 02:08:38 (GMT)
commite3fc51eed60bb6835dbd70dcc5ec151339ac13be (patch)
tree8d1e4252a86db773e40d98e16e23c69b6f1bce98 /library
parent6c1fd3dae2312801316e5ee7ae589c0c2498bc2c (diff)
downloadtcl-e3fc51eed60bb6835dbd70dcc5ec151339ac13be.zip
tcl-e3fc51eed60bb6835dbd70dcc5ec151339ac13be.tar.gz
tcl-e3fc51eed60bb6835dbd70dcc5ec151339ac13be.tar.bz2
fixed bug 1497 for 8.1: tclPkgUnknown should test for read privs
Diffstat (limited to 'library')
-rw-r--r--library/package.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/package.tcl b/library/package.tcl
index cf8d1ba..6cbaf67 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.2 1999/04/16 00:46:56 stanton Exp $
+# RCS: @(#) $Id: package.tcl,v 1.3 1999/04/20 02:08:38 surles Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1998 Sun Microsystems, Inc.
@@ -443,11 +443,11 @@ proc tclPkgUnknown {name version {exact {}}} {
foreach file [glob -nocomplain [file join [lindex $auto_path $i] \
* pkgIndex.tcl]] {
set dir [file dirname $file]
- if {[catch {source $file} msg]} {
+ if {[file readable $file] && [catch {source $file} msg]} {
tclLog "error reading package index file $file: $msg"
}
}
- }
+ }
set dir [lindex $auto_path $i]
set file [file join $dir pkgIndex.tcl]
# safe interps usually don't have "file readable", nor stderr channel