X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_client_factory.c;h=87c4419eb09c2e07ec8542a4cbba9c86630a14fd;hp=1b14f481dac82a2592f3ed056b808ed33a8e8cc6;hb=f05a032e5e994a8b1ea8b5ab0291f1d1d6d42355;hpb=c0d96fe2c0d156412bcb22bf5b9f5e9ed0046c9c diff --git a/php_http_client_factory.c b/php_http_client_factory.c index 1b14f48..87c4419 100644 --- a/php_http_client_factory.c +++ b/php_http_client_factory.c @@ -228,6 +228,10 @@ PHP_METHOD(HttpClientFactory, createPool) php_http_error(HE_WARNING, PHP_HTTP_E_REQUEST_FACTORY, "pools are not supported by this driver"); } } end_error_handling(); + + if (argv) { + efree(argv); + } } } end_error_handling(); } @@ -235,7 +239,7 @@ PHP_METHOD(HttpClientFactory, createPool) PHP_METHOD(HttpClientFactory, createDataShare) { int argc = 0; - zval ***argv; + zval ***argv = NULL; with_error_handling(EH_THROW, php_http_exception_get_class_entry()) { if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "*", &argv, &argc)) { @@ -289,6 +293,9 @@ PHP_METHOD(HttpClientFactory, createDataShare) php_http_error(HE_WARNING, PHP_HTTP_E_REQUEST_FACTORY, "datashares are not supported by this driver"); } } end_error_handling(); + if (argv) { + efree(argv); + } } } end_error_handling(); }