summaryrefslogtreecommitdiff
path: root/win32/winutil.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-07-29 15:05:41 +0200
committerAnatol Belski <ab@php.net>2016-07-29 15:05:41 +0200
commitd6f7020eaac62f0beecd69e29e0ce1ded9bfc48d (patch)
treeed7585e868ee4892de56040fb477fa30d722fa06 /win32/winutil.c
parentd8403aa019edbaef276124da4afa4f71127c568d (diff)
downloadphp-git-d6f7020eaac62f0beecd69e29e0ce1ded9bfc48d.tar.gz
add more errno handling
Diffstat (limited to 'win32/winutil.c')
-rw-r--r--win32/winutil.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/win32/winutil.c b/win32/winutil.c
index 9afbb66240..cd009cadc0 100644
--- a/win32/winutil.c
+++ b/win32/winutil.c
@@ -397,6 +397,8 @@ PHP_WINUTIL_API int php_win32_code_to_errno(unsigned long w32Err)
/* 996 */ , { ERROR_IO_INCOMPLETE , EAGAIN }
/* 997 */ , { ERROR_IO_PENDING , EAGAIN }
+ /* 1004 */ , { ERROR_INVALID_FLAGS , EINVAL }
+ /* 1113 */ , { ERROR_NO_UNICODE_TRANSLATION , EINVAL }
/* 1168 */ , { ERROR_NOT_FOUND , ENOENT }
/* 1816 */ , { ERROR_NOT_ENOUGH_QUOTA , ENOMEM }
, { ERROR_ABANDONED_WAIT_0 , EIO }