diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-09-21 14:48:53 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-09-21 14:48:53 +0200 |
commit | 0bd405173234b7d749aac144f60b68fee2135cb3 (patch) | |
tree | fb3accf05d842c165661a1b043608d164970a52b /src/memfile.c | |
parent | 4ff4290de1a9c0fddc02b3fc84f5947bb09db06c (diff) | |
download | vim-git-0bd405173234b7d749aac144f60b68fee2135cb3.tar.gz |
patch 8.1.0423: MS-Windows: using dup-close for flushing a filev8.1.0423
Problem: MS-Windows: using dup-close for flushing a file.
Solution: Use _commit(). (Ken Takata, closes #3463)
Diffstat (limited to 'src/memfile.c')
-rw-r--r-- | src/memfile.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/memfile.c b/src/memfile.c index 0d07b7558..1e7390079 100644 --- a/src/memfile.c +++ b/src/memfile.c @@ -539,9 +539,6 @@ mf_sync(memfile_T *mfp, int flags) { int status; bhdr_T *hp; -#if defined(SYNC_DUP_CLOSE) - int fd; -#endif int got_int_save = got_int; if (mfp->mf_fd < 0) /* there is no file, nothing to do */ @@ -624,13 +621,9 @@ mf_sync(memfile_T *mfp, int flags) status = FAIL; } #endif -#ifdef SYNC_DUP_CLOSE - /* - * Win32 is a bit more work: Duplicate the file handle and close it. - * This should flush the file to disk. - */ - if ((fd = dup(mfp->mf_fd)) >= 0) - close(fd); +#ifdef WIN32 + if (_commit(mfp->mf_fd)) + status = FAIL; #endif #ifdef AMIGA # if defined(__AROS__) || defined(__amigaos4__) |