diff options
Diffstat (limited to 'posix/regex.c')
-rw-r--r-- | posix/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/regex.c b/posix/regex.c index fc4db38a55..a8655cdd70 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -1568,7 +1568,7 @@ static reg_errcode_t compile_range _RE_ARGS ((const char **p_ptr, MSC and drop MAX_BUF_SIZE a bit. Otherwise you may end up reallocating to 0 bytes. Such thing is not going to work too well. You have been warned!! */ -#ifdef _MSC_VER +#if defined(_MSC_VER) && !defined(WIN32) /* Microsoft C 16-bit versions limit malloc to approx 65512 bytes. The REALLOC define eliminates a flurry of conversion warnings, but is not required. */ |