From: Michael Wallner Date: Thu, 8 Feb 2018 15:59:50 +0000 (+0100) Subject: fix macro X-Git-Tag: RELEASE_3_2_0_RC1~41 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=9e422b1a41e998e4e37a61e78c32f806dfe01516 fix macro --- diff --git a/src/php_http_misc.h b/src/php_http_misc.h index 02e1b46..c8ab922 100644 --- a/src/php_http_misc.h +++ b/src/php_http_misc.h @@ -165,7 +165,7 @@ static inline const char *php_http_locate_bin_eol(const char *bin, size_t len, i # define HT_PROTECT_RECURSION(ht) GC_PROTECT_RECURSION(ht) #endif #ifdef ZEND_HASH_DEC_APPLY_COUNT -# define HT_UNPROTECT_RECURSION ZEND_HASH_DEC_APPLY_COUNT(ht) +# define HT_UNPROTECT_RECURSION(ht) ZEND_HASH_DEC_APPLY_COUNT(ht) #else # define HT_UNPROTECT_RECURSION(ht) GC_UNPROTECT_RECURSION(ht) #endif