From: Michael Wallner Date: Wed, 12 Dec 2012 18:15:47 +0000 (+0000) Subject: no need to separate the zval here X-Git-Tag: RELEASE_2_1_0_RC3~10^2^2~70 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=a42f3d4cbbff728783484b5766c52c7061cdff26 no need to separate the zval here --- diff --git a/php_http_params.c b/php_http_params.c index 3d6e802..9ff51a7 100644 --- a/php_http_params.c +++ b/php_http_params.c @@ -575,13 +575,7 @@ static inline void shift_key(php_http_buffer_t *buf, char *key_str, size_t key_l static inline void shift_val(php_http_buffer_t *buf, zval *zvalue, const char *vss, size_t vsl, unsigned flags TSRMLS_DC) { if (Z_TYPE_P(zvalue) != IS_BOOL) { - zval *tmp; - - if (Z_TYPE_P(zvalue) == IS_ARRAY) { - tmp = php_http_zsep(1, IS_ARRAY, zvalue); - } else { - tmp = php_http_zsep(1, IS_STRING, zvalue); - } + zval *tmp = php_http_ztyp(IS_STRING, zvalue); prepare_value(flags, tmp TSRMLS_CC); php_http_buffer_append(buf, vss, vsl);