summaryrefslogtreecommitdiff
path: root/ext/curl/multi.c
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-03-15 17:08:01 +0100
committerNikita Popov <nikita.ppv@gmail.com>2019-03-15 17:08:01 +0100
commit585f4cbb214add60fbd1c4136da215b8dd24c65a (patch)
treebe5e94e9689199d05e29f57fde8028460b46c01d /ext/curl/multi.c
parent2a04efe0e42c9d7ac150bc918e16edb96cf4f219 (diff)
parent7899f6a9065197de9d6c3e31571fe5189d32a31b (diff)
downloadphp-git-585f4cbb214add60fbd1c4136da215b8dd24c65a.tar.gz
Merge branch 'PHP-7.3' into PHP-7.4
Diffstat (limited to 'ext/curl/multi.c')
-rw-r--r--ext/curl/multi.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/curl/multi.c b/ext/curl/multi.c
index ade9125dd1..473866f551 100644
--- a/ext/curl/multi.c
+++ b/ext/curl/multi.c
@@ -419,6 +419,7 @@ void _php_curl_multi_close(zend_resource *rsrc) /* {{{ */
curl_multi_cleanup(mh->multi);
zend_llist_clean(&mh->easyh);
if (mh->handlers->server_push) {
+ zval_ptr_dtor(&mh->handlers->server_push->func_name);
efree(mh->handlers->server_push);
}
if (mh->handlers) {
@@ -576,11 +577,6 @@ static int _php_curl_multi_setopt(php_curlm *mh, zend_long option, zval *zvalue,
ZVAL_COPY(&mh->handlers->server_push->func_name, zvalue);
mh->handlers->server_push->method = PHP_CURL_USER;
- if (!Z_ISUNDEF(mh->handlers->server_push->func_name)) {
- zval_ptr_dtor(&mh->handlers->server_push->func_name);
- mh->handlers->server_push->fci_cache = empty_fcall_info_cache;
-
- }
error = curl_multi_setopt(mh->multi, option, _php_server_push_callback);
if (error != CURLM_OK) {
return 0;