summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley@noemail.net>2006-01-12 16:19:02 (GMT)
committervincentdarley <vincentdarley@noemail.net>2006-01-12 16:19:02 (GMT)
commit03bf23d15da0618af73df054348633157199b402 (patch)
tree21171ba0eda02895adf586d3663d9a4f6a7b4b70 /win
parentae2591739deb9a69b212e335a2fe390c5f7d709e (diff)
downloadtcl-03bf23d15da0618af73df054348633157199b402.zip
tcl-03bf23d15da0618af73df054348633157199b402.tar.gz
tcl-03bf23d15da0618af73df054348633157199b402.tar.bz2
fix to sharing violation
FossilOrigin-Name: 32c1f99cc6650488d67273b92acc302afb7d75d7
Diffstat (limited to 'win')
-rw-r--r--win/tclWinFile.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c
index f7fc5a4..f65e1c1 100644
--- a/win/tclWinFile.c
+++ b/win/tclWinFile.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: tclWinFile.c,v 1.81 2005/12/13 22:43:18 kennykb Exp $
+ * RCS: @(#) $Id: tclWinFile.c,v 1.82 2006/01/12 16:19:04 vincentdarley Exp $
*/
/* #define _WIN32_WINNT 0x0500 */
@@ -2018,7 +2018,8 @@ NativeStat(
* and if that isn't available, then on even simpler routines.
*/
fileHandle = (tclWinProcs->createFileProc) (
- nativePath, GENERIC_READ, 0, NULL, OPEN_EXISTING,
+ nativePath, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
+ NULL, OPEN_EXISTING,
FILE_FLAG_BACKUP_SEMANTICS | FILE_FLAG_OPEN_REPARSE_POINT, NULL);
if (fileHandle != INVALID_HANDLE_VALUE) {