From 19632ae7dcdbbb7c34bf0ffde9fb7858f55424cd Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Sun, 6 May 2012 00:50:37 +0800 Subject: [PATCH] Fixed bug #61948 (CURLOPT_COOKIEFILE '' raises open_basedir restriction) --- NEWS | 4 ++++ ext/curl/interface.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 9ef6abf66f..8b82237849 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,10 @@ PHP NEWS bug #61785 (Memory leak when access a non-exists file without router). (Laruence) +- CURL: + . Fixed bug #61948 (CURLOPT_COOKIEFILE '' raises open_basedir restriction). + (Laruence) + - Core: . Fixed bug #61922 (ZTS build doesn't accept zend.script_encoding config). (Laruence) diff --git a/ext/curl/interface.c b/ext/curl/interface.c index b359952a8b..b03f346b59 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -2177,7 +2177,7 @@ string_copy: convert_to_string_ex(zvalue); - if (php_check_open_basedir(Z_STRVAL_PP(zvalue) TSRMLS_CC)) { + if (!Z_STRLEN_PP(zvalue) || php_check_open_basedir(Z_STRVAL_PP(zvalue) TSRMLS_CC)) { RETVAL_FALSE; return 1; } -- 2.50.1