summaryrefslogtreecommitdiffstats
path: root/generic/tclFileName.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2008-12-03 07:08:44 (GMT)
committerdgp <dgp@noemail.net>2008-12-03 07:08:44 (GMT)
commit7fbd07899a3557f463d8291ced6801fc3069a39a (patch)
tree376c7e72209b44ee58c200a22b49d3c493c93a19 /generic/tclFileName.c
parent3fa97cbef1eb50229e8d2041d9a48d83230c9d25 (diff)
downloadtcl-7fbd07899a3557f463d8291ced6801fc3069a39a.zip
tcl-7fbd07899a3557f463d8291ced6801fc3069a39a.tar.gz
tcl-7fbd07899a3557f463d8291ced6801fc3069a39a.tar.bz2
* generic/tclFileName.c (DoGlob): One of the
Tcl_FSMatchInDirectory() calls did not have its return code checked. This caused error messages returned by some Tcl_Filesystem drivers to be swallowed. FossilOrigin-Name: 25f2f7822582758ae1682c6bf7fa4a4105f9cedd
Diffstat (limited to 'generic/tclFileName.c')
-rw-r--r--generic/tclFileName.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tclFileName.c b/generic/tclFileName.c
index cca1a9b..2d62414 100644
--- a/generic/tclFileName.c
+++ b/generic/tclFileName.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclFileName.c,v 1.94 2008/10/16 22:34:19 nijtmans Exp $
+ * RCS: @(#) $Id: tclFileName.c,v 1.95 2008/12/03 07:08:44 dgp Exp $
*/
#include "tclInt.h"
@@ -2464,9 +2464,10 @@ DoGlob(
}
Tcl_IncrRefCount(joinedPtr);
Tcl_DStringFree(&append);
- Tcl_FSMatchInDirectory(interp, matchesObj, joinedPtr, NULL, types);
+ result = Tcl_FSMatchInDirectory(interp, matchesObj, joinedPtr, NULL,
+ types);
Tcl_DecrRefCount(joinedPtr);
- return TCL_OK;
+ return result;
}
/*