summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-02-16 14:13:52 +0300
committerDmitry Stogov <dmitry@zend.com>2018-02-16 14:13:52 +0300
commitea7a3c32b8cdba17aeeb2eb2acf55266fe82d088 (patch)
treeecaf121febdc4153fd1ae737b4167436ac8c1ef2 /Zend/zend_API.h
parent7e329a82c7b102ca1c2e247e3ebf058383c5d6f2 (diff)
downloadphp-git-ea7a3c32b8cdba17aeeb2eb2acf55266fe82d088.tar.gz
Added missed "return"
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 17308e3ae8..f036ef3f31 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -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)