From f4a0e601ee69b5821129b3ae94014ccda354b6d3 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Mon, 1 Dec 2014 08:24:44 +0100 Subject: [PATCH] C89 compat --- main/streams/plain_wrapper.c | 5 +---- 1 file changed, 1 insertion(+), 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; } -- 2.40.0