diff options
author | vincentdarley <vincentdarley> | 2003-12-12 17:02:37 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-12-12 17:02:37 (GMT) |
commit | c91bfc53bfc42c619f31d2f0d69ddcbdfdc3e944 (patch) | |
tree | 08fa16a9d24940c91c9a0a1293f6b97ea4fe8a1f /generic/tclCmdAH.c | |
parent | 40b6f0c8bf1edab6618ea5c61cea14cf3a5c5443 (diff) | |
download | tcl-c91bfc53bfc42c619f31d2f0d69ddcbdfdc3e944.zip tcl-c91bfc53bfc42c619f31d2f0d69ddcbdfdc3e944.tar.gz tcl-c91bfc53bfc42c619f31d2f0d69ddcbdfdc3e944.tar.bz2 |
file normalize ~nobody fix
Diffstat (limited to 'generic/tclCmdAH.c')
-rw-r--r-- | generic/tclCmdAH.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index e049520..97266c0 100644 --- a/generic/tclCmdAH.c +++ b/generic/tclCmdAH.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdAH.c,v 1.36 2003/11/10 17:57:21 vincentdarley Exp $ + * RCS: @(#) $Id: tclCmdAH.c,v 1.37 2003/12/12 17:02:37 vincentdarley Exp $ */ #include "tclInt.h" @@ -1208,6 +1208,9 @@ Tcl_FileObjCmd(dummy, interp, objc, objv) } fileName = Tcl_FSGetNormalizedPath(interp, objv[2]); + if (fileName == NULL) { + return TCL_ERROR; + } Tcl_SetObjResult(interp, fileName); return TCL_OK; } |