summaryrefslogtreecommitdiffstats
path: root/generic/tclIOUtil.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2012-06-20 19:49:31 (GMT)
committerdgp@users.sourceforge.net <dgp>2012-06-20 19:49:31 (GMT)
commite6c2017199eba11d490e8abe05f1fd3ce4c7fb91 (patch)
tree856404b798f52f31461f6b5895d0b117284ae42a /generic/tclIOUtil.c
parentb80b364b6575e2c9b4225f5945d16ca02bab7cb1 (diff)
parente65586f006bd118cbe070bd52ebf71981904647c (diff)
downloadtcl-e6c2017199eba11d490e8abe05f1fd3ce4c7fb91.zip
tcl-e6c2017199eba11d490e8abe05f1fd3ce4c7fb91.tar.gz
tcl-e6c2017199eba11d490e8abe05f1fd3ce4c7fb91.tar.bz2
Purge more dead fs path code.
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r--generic/tclIOUtil.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index e4b4ad6..e3c5816 100644
--- a/generic/tclIOUtil.c
+++ b/generic/tclIOUtil.c
@@ -2662,7 +2662,7 @@ Tcl_FSGetCwd(
retVal = (*fsRecPtr->fsPtr->internalToNormalizedProc)(
retCd);
Tcl_IncrRefCount(retVal);
- norm = TclFSNormalizeAbsolutePath(interp,retVal,NULL);
+ norm = TclFSNormalizeAbsolutePath(interp,retVal);
if (norm != NULL) {
/*
* We found a cwd, which is now in our global
@@ -2708,7 +2708,7 @@ Tcl_FSGetCwd(
*/
if (retVal != NULL) {
- Tcl_Obj *norm = TclFSNormalizeAbsolutePath(interp, retVal, NULL);
+ Tcl_Obj *norm = TclFSNormalizeAbsolutePath(interp, retVal);
if (norm != NULL) {
/*
* We found a cwd, which is now in our global storage. We must
@@ -2776,8 +2776,7 @@ Tcl_FSGetCwd(
retVal = (*proc)(interp);
}
if (retVal != NULL) {
- Tcl_Obj *norm = TclFSNormalizeAbsolutePath(interp,
- retVal, NULL);
+ Tcl_Obj *norm = TclFSNormalizeAbsolutePath(interp, retVal);
/*
* Check whether cwd has changed from the value previously