From: Michael Wallner Date: Tue, 26 Jun 2018 15:19:43 +0000 (+0200) Subject: fix shutdown crash with 7.3/master X-Git-Tag: RELEASE_3_2_0~5 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=377d576a6e68def5708cf1ffcd3c233c4dddf356 fix shutdown crash with 7.3/master --- diff --git a/src/php_http_options.c b/src/php_http_options.c index d4be512..4cb6ed3 100644 --- a/src/php_http_options.c +++ b/src/php_http_options.c @@ -16,7 +16,7 @@ static void php_http_options_hash_dtor(zval *pData) { php_http_option_t *opt = Z_PTR_P(pData); - zval_ptr_dtor(&opt->defval); + zval_internal_dtor(&opt->defval); zend_hash_destroy(&opt->suboptions.options); zend_string_release(opt->name); pefree(opt, opt->persistent);