summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixFile.c
diff options
context:
space:
mode:
authordas <das>2007-09-17 11:37:30 (GMT)
committerdas <das>2007-09-17 11:37:30 (GMT)
commit5019c188e504d1080f987c0391048458abef7fc9 (patch)
tree071255c8714881d4d589d00cd4364faabe4cbd50 /unix/tclUnixFile.c
parent3c73dfe8f910b0af223198e6f8196f6bc52124f6 (diff)
downloadtcl-5019c188e504d1080f987c0391048458abef7fc9.zip
tcl-5019c188e504d1080f987c0391048458abef7fc9.tar.gz
tcl-5019c188e504d1080f987c0391048458abef7fc9.tar.bz2
coverity id 100
Diffstat (limited to 'unix/tclUnixFile.c')
-rw-r--r--unix/tclUnixFile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tclUnixFile.c b/unix/tclUnixFile.c
index e278eae..cbfff64 100644
--- a/unix/tclUnixFile.c
+++ b/unix/tclUnixFile.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixFile.c,v 1.50 2006/08/29 00:36:57 coldstore Exp $
+ * RCS: @(#) $Id: tclUnixFile.c,v 1.51 2007/09/17 11:37:30 das Exp $
*/
#include "tclInt.h"
@@ -886,6 +886,9 @@ TclpObjLink(
Tcl_DecrRefCount(dirPtr);
} else {
target = Tcl_FSGetNativePath(toPtr);
+ if (target == NULL) {
+ return NULL;
+ }
if (access(target, F_OK) == -1) {
/*
* Target doesn't exist.
@@ -894,9 +897,6 @@ TclpObjLink(
errno = ENOENT;
return NULL;
}
- if (target == NULL) {
- return NULL;
- }
}
if (access(src, F_OK) != -1) {