summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-07-11 13:09:20 +0200
committerAnatol Belski <ab@php.net>2018-07-11 13:09:20 +0200
commit98102648cb8a86facd025adefbf1dafc73537750 (patch)
tree5c4073269cfac8e58ecaef082286507bba242d42
parent9026562c7995977916e142af134b68a766898461 (diff)
downloadphp-git-98102648cb8a86facd025adefbf1dafc73537750.tar.gz
Fix condition
It looks like the real length limit is 247 bytes, not 248 as documented.
-rw-r--r--win32/ioutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ioutil.c b/win32/ioutil.c
index b9131dc759..d9c19564fb 100644
--- a/win32/ioutil.c
+++ b/win32/ioutil.c
@@ -311,7 +311,7 @@ PW32IO int php_win32_ioutil_mkdir(const char *path, mode_t mode)
int ret = 0;
DWORD err = 0;
- if (pathw_len < _MAX_PATH && pathw_len > _MAX_PATH - 12) {
+ if (pathw_len < _MAX_PATH && pathw_len >= _MAX_PATH - 12) {
/* Special case here. From the doc:
"When using an API to create a directory, the specified path cannot be