summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2015-08-25 11:35:01 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2015-08-25 11:35:01 (GMT)
commit756fccdb44c9885dd07f8831579021d9f877d0d2 (patch)
treefd67c4df954da5d9030c959d0668dbc513b0c22b /win
parente48ed931f716369c09fa1b6e036c119ca446c0f7 (diff)
parent0676147791e21ef6fdf890dc0440849b3fa0dce8 (diff)
downloadtcl-756fccdb44c9885dd07f8831579021d9f877d0d2.zip
tcl-756fccdb44c9885dd07f8831579021d9f877d0d2.tar.gz
tcl-756fccdb44c9885dd07f8831579021d9f877d0d2.tar.bz2
Fix [0df7a1ec2674a76a]: unix/tclUnixFile.c: return value of call to TclpGetCwd in TclpFindExecutable is not checked, variable cwd is used uninitialized.
Diffstat (limited to 'win')
-rwxr-xr-xwin/tclWinFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c
index 6b9d373..02927ad 100755
--- a/win/tclWinFile.c
+++ b/win/tclWinFile.c
@@ -3001,7 +3001,7 @@ TclNativeCreateNativeRep(
}
done:
-
+
TclDecrRefCount(validPathPtr);
return nativePathPtr;
}