mirror of
https://github.com/git-for-windows/git.git
synced 2026-02-04 03:33:01 -06:00
mingw: suggest windows.appendAtomically in more cases
When running Git for Windows on a remote APFS filesystem, it would appear that the `mingw_open_append()`/`write()` combination would fail almost exactly like on some CIFS-mounted shares as had been reported in https://github.com/git-for-windows/git/issues/2753, albeit with a different `errno` value. Let's handle that `errno` value just the same, by suggesting to set `windows.appendAtomically=false`. Signed-off-by: David Lomas <dl3@pale-eds.co.uk> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
parent
d3c2c74d84
commit
d793256688
@ -970,7 +970,7 @@ ssize_t mingw_write(int fd, const void *buf, size_t len)
|
||||
{
|
||||
ssize_t result = write(fd, buf, len);
|
||||
|
||||
if (result < 0 && (errno == EINVAL || errno == ENOSPC) && buf) {
|
||||
if (result < 0 && (errno == EINVAL || errno == EBADF || errno == ENOSPC) && buf) {
|
||||
int orig = errno;
|
||||
|
||||
/* check if fd is a pipe */
|
||||
@ -996,7 +996,7 @@ ssize_t mingw_write(int fd, const void *buf, size_t len)
|
||||
}
|
||||
|
||||
errno = orig;
|
||||
} else if (orig == EINVAL)
|
||||
} else if (orig == EINVAL || errno == EBADF)
|
||||
errno = EPIPE;
|
||||
else {
|
||||
DWORD buf_size;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user