diff options
author | Patrik Nyblom <[email protected]> | 2013-08-23 17:22:38 +0200 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2013-08-23 17:22:38 +0200 |
commit | 42beca2776cf0995a08d9218708a6d66925adc34 (patch) | |
tree | e8582a17cf7beff421b0e07b0d82da3ee0c2c297 /erts/emulator/drivers/win32/win_efile.c | |
parent | cefaaa6eddafbd3fd418eec5551819a82935e3b3 (diff) | |
parent | 076dff38d5aa6fd303b5c2a3aa809115c0545164 (diff) | |
download | otp-42beca2776cf0995a08d9218708a6d66925adc34.tar.gz otp-42beca2776cf0995a08d9218708a6d66925adc34.tar.bz2 otp-42beca2776cf0995a08d9218708a6d66925adc34.zip |
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/drivers/win32/win_efile.c')
-rw-r--r-- | erts/emulator/drivers/win32/win_efile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/drivers/win32/win_efile.c b/erts/emulator/drivers/win32/win_efile.c index be3d86a1d2..b36a103f8e 100644 --- a/erts/emulator/drivers/win32/win_efile.c +++ b/erts/emulator/drivers/win32/win_efile.c @@ -772,6 +772,7 @@ efile_may_openfile(Efile_error* errInfo, char *name) { DWORD attr; if ((attr = GetFileAttributesW(wname)) == INVALID_FILE_ATTRIBUTES) { + errno = ENOENT; return check_error(-1, errInfo); } |