From: Anatol Belski Date: Sun, 6 Nov 2016 16:51:25 +0000 (+0100) Subject: add missing RETURN_STRINGL_CHECK X-Git-Tag: php-5.6.29RC1~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b044a7429e750071ef152595a5fc4e880f88430e;p=php add missing RETURN_STRINGL_CHECK As RETVAL_STRINGL_CHECK is already there, this one is needed for completion. One place in ext/bz2 is missing that, so it will likely be useful for other possible fixes. --- diff --git a/Zend/zend_API.h b/Zend/zend_API.h index dadeaf5849..41aa65f25b 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -667,6 +667,7 @@ END_EXTERN_C() } \ RETVAL_STRINGL((s), (int)__len, (dup)); \ } while (0) +#define RETURN_STRINGL_CHECK(s, len, dup) { RETVAL_STRINGL_CHECK(s, len, dup); return; } #define SET_VAR_STRING(n, v) { \