diff options
-rw-r--r-- | .fossil-settings/ignore-glob | 2 | ||||
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | win/tclWinFile.c | 22 |
3 files changed, 21 insertions, 7 deletions
diff --git a/.fossil-settings/ignore-glob b/.fossil-settings/ignore-glob index 16930f5..31c80a0 100644 --- a/.fossil-settings/ignore-glob +++ b/.fossil-settings/ignore-glob @@ -18,4 +18,6 @@ */tcltest* */versions.vc unix/dltest.marker +unix/pkgs/* +win/pkgs/* win/tcl.hpj @@ -1,7 +1,7 @@ 2013-03-19 Jan Nijtmans <nijtmans@users.sf.net> - * win/tclWinFile.c: [Bug 3608360]: Back out bug fix - for [Bug 2893771], because it was the cause of the regression. + * win/tclWinFile.c: [Bug 3608360]: Incompatible behaviour of "file + exists". 2013-03-18 Donal K. Fellows <dkf@users.sf.net> diff --git a/win/tclWinFile.c b/win/tclWinFile.c index 989836f..528b9e5 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -1534,11 +1534,14 @@ NativeAccess( if (attr == INVALID_FILE_ATTRIBUTES) { /* - * File doesn't exist. + * File might not exist. */ - TclWinConvertError(GetLastError()); - return -1; + DWORD lasterror = GetLastError(); + if (lasterror != ERROR_SHARING_VIOLATION) { + TclWinConvertError(lasterror); + return -1; + } } if (mode == F_OK) { @@ -1994,8 +1997,17 @@ NativeStat( if (GetFileAttributesEx(nativePath, GetFileExInfoStandard, &data) != TRUE) { - Tcl_SetErrno(ENOENT); - return -1; + HANDLE hFind; + WIN32_FIND_DATA ffd; + DWORD lasterror = GetLastError(); + + if (lasterror != ERROR_SHARING_VIOLATION) { + TclWinConvertError(lasterror); + return -1; + } + hFind = FindFirstFile(nativePath, &ffd); + memcpy(&data, &ffd, sizeof(data)); + FindClose(hFind); } attr = data.dwFileAttributes; |