X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_env.c;h=10d54fe4019a5a0472ffc95b1c6bfe1758964279;hp=30ee32d7c68b3341aeaeb24c909b102537caccdf;hb=d7f91cdeb926694858b07d77e29e10d5617112b1;hpb=8ec2c825719482e62222163a300b0e18319591d0 diff --git a/php_http_env.c b/php_http_env.c index 30ee32d..10d54fe 100644 --- a/php_http_env.c +++ b/php_http_env.c @@ -715,6 +715,7 @@ static PHP_METHOD(HttpEnv, getRequestBody) body = php_http_env_get_request_body(TSRMLS_C); if (SUCCESS == php_http_new(&ov, class_entry, (php_http_new_t) php_http_message_body_object_new_ex, php_http_message_body_class_entry, body, NULL TSRMLS_CC)) { + php_http_message_body_addref(body); RETVAL_OBJVAL(ov, 0); } } @@ -968,18 +969,18 @@ static SAPI_POST_HANDLER_FUNC(php_http_json_post_handler) #endif if (json_len) { - zval_dtor(zarg); - ZVAL_NULL(zarg); - php_json_decode(zarg, json_str, json_len, 1, PG(max_input_nesting_level) TSRMLS_CC); + zval zjson; + + INIT_ZVAL(zjson); + php_json_decode(&zjson, json_str, json_len, 1, PG(max_input_nesting_level) TSRMLS_CC); + if (Z_TYPE(zjson) != IS_NULL) { + zval_dtor(zarg); + ZVAL_COPY_VALUE(zarg, (&zjson)); + } } #if PHP_VERSION_ID >= 50600 STR_FREE(json_str); #endif - - /* always let $_POST be array() */ - if (Z_TYPE_P(zarg) == IS_NULL) { - array_init(zarg); - } } static void php_http_env_register_json_handler(TSRMLS_D)