diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-10-12 22:05:45 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-10-12 22:05:45 (GMT) |
commit | 93eec628d064ab07480feea7e4afc717d4f20f70 (patch) | |
tree | 2069736e8310acbf08c84b0791afeed80adb7d09 /generic/tclPathObj.c | |
parent | d58ee15b712b585ddcbd4f8cdd91997404c10145 (diff) | |
download | tcl-93eec628d064ab07480feea7e4afc717d4f20f70.zip tcl-93eec628d064ab07480feea7e4afc717d4f20f70.tar.gz tcl-93eec628d064ab07480feea7e4afc717d4f20f70.tar.bz2 |
Fix for [Bug 1325099]
Diffstat (limited to 'generic/tclPathObj.c')
-rw-r--r-- | generic/tclPathObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c index f46854e..422aeae 100644 --- a/generic/tclPathObj.c +++ b/generic/tclPathObj.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: tclPathObj.c,v 1.45 2005/08/09 11:02:36 dkf Exp $ + * RCS: @(#) $Id: tclPathObj.c,v 1.46 2005/10/12 22:05:46 dkf Exp $ */ #include "tclInt.h" @@ -2329,7 +2329,7 @@ SetFsPathFromAny(interp, pathPtr) objc--; objv++; while (objc--) { - TclpNativeJoinPath(transPtr, TclGetString(*objv++)); + TclpNativeJoinPath(transPtr, Tcl_GetString(*objv++)); } TclDecrRefCount(parts); } else { |