1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00

Added missed "return"

This commit is contained in:
Dmitry Stogov
2018-02-16 14:13:52 +03:00
parent 7e329a82c7
commit ea7a3c32b8

View File

@@ -770,6 +770,7 @@ ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_exception(int num, cha
#define ZEND_PARSE_PARAMETERS_NONE() do { \
if (UNEXPECTED(ZEND_NUM_ARGS() != 0)) { \
zend_wrong_parameters_none_error(); \
return; \
} \
} while (0)