From: Michael Wallner Date: Fri, 12 Jun 2015 08:31:29 +0000 (+0200) Subject: this got implemented in zend API X-Git-Tag: RELEASE_3_0_0_RC1~49 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=ac1886f1b6fb1e938405eb92e62303ffd21d8828;hp=468e8d748d365811af4ce890fd8fc4c1f88cc08a this got implemented in zend API --- diff --git a/php_http_misc.h b/php_http_misc.h index 36f4020..e8d900b 100644 --- a/php_http_misc.h +++ b/php_http_misc.h @@ -187,12 +187,6 @@ static inline ZEND_RESULT_CODE php_http_ini_entry(const char *name_str, size_t n #define Z_ISUSER(zv) (Z_TYPE(zv) <= 10) #define Z_ISUSER_P(zvp) Z_ISUSER(*(zvp)) -#define RETVAL_STR_COPY(zs) ZVAL_STR_COPY(return_value, zs) -#define RETURN_STR_COPY(zs) do { \ - ZVAL_STR_COPY(return_value, zs); \ - return; \ -} - /* return object(values) */ #define ZVAL_OBJECT(z, o, addref) \ ZVAL_OBJ(z, o); \