diff options
author | Anatol Belski <ab@php.net> | 2014-12-01 08:24:44 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-01 08:24:44 +0100 |
commit | f4a0e601ee69b5821129b3ae94014ccda354b6d3 (patch) | |
tree | ad050e91eef75c7a9b085dad2ef41f88aa31e9f8 /main/streams | |
parent | 85e2e6c1fdcdf314c17d20321a0fec0bca1b0215 (diff) | |
download | php-git-f4a0e601ee69b5821129b3ae94014ccda354b6d3.tar.gz |
C89 compat
Diffstat (limited to 'main/streams')
-rw-r--r-- | main/streams/plain_wrapper.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c index aae2f6da36..a75c2d0122 100644 --- a/main/streams/plain_wrapper.c +++ b/main/streams/plain_wrapper.c @@ -1257,15 +1257,12 @@ static int php_plain_files_rmdir(php_stream_wrapper *wrapper, char *url, int opt url += sizeof("file://") - 1; } -#if PHP_WIN32 - int url_len = strlen(url); -#endif if (php_check_open_basedir(url TSRMLS_CC)) { return 0; } #if PHP_WIN32 - if (!php_win32_check_trailing_space(url, url_len)) { + if (!php_win32_check_trailing_space(url, (int)strlen(url))) { php_error_docref1(NULL TSRMLS_CC, url, E_WARNING, "%s", strerror(ENOENT)); return 0; } |