From bae743b1ed1fb245ace451f81baa0949def35814 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 12 Sep 2018 08:50:16 -0600 Subject: [PATCH] windows: make win_to_posix_error() more resilient If we pass in ERROR_SUCCESS, we should get a zero back. Signed-off-by: Jens Axboe --- os/windows/posix.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/os/windows/posix.c b/os/windows/posix.c index 5b72beab..fd1d5582 100644 --- a/os/windows/posix.c +++ b/os/windows/posix.c @@ -35,6 +35,8 @@ HRESULT WINAPI StringCchPrintfA(char *pszDest, size_t cchDest, const char *pszFo int win_to_posix_error(DWORD winerr) { switch (winerr) { + case ERROR_SUCCESS: + return 0; case ERROR_FILE_NOT_FOUND: return ENOENT; case ERROR_PATH_NOT_FOUND: -- 2.25.1