diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-10-07 10:02:18 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-10-07 10:02:18 +0200 |
commit | 647b1c7fcf04447658459f507271c0a5ce75229a (patch) | |
tree | 919243dc45f064bb92e411007b74041a4f946946 /ext/standard/proc_open.c | |
parent | 5ff7347a66499018af7b400337551cd2d4fe71f8 (diff) | |
download | php-git-647b1c7fcf04447658459f507271c0a5ce75229a.tar.gz |
Remove most uses of ZEND_PARSE_PARAMETERS_END_EX()
As ZPP now throws, it makes no sense to specify an explicit return
value.
Diffstat (limited to 'ext/standard/proc_open.c')
-rw-r--r-- | ext/standard/proc_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/proc_open.c b/ext/standard/proc_open.c index a2efa98750..12e9820522 100644 --- a/ext/standard/proc_open.c +++ b/ext/standard/proc_open.c @@ -521,7 +521,7 @@ PHP_FUNCTION(proc_open) Z_PARAM_STRING_EX(cwd, cwd_len, 1, 0) Z_PARAM_ARRAY_EX(environment, 1, 0) Z_PARAM_ARRAY_EX(other_options, 1, 0) - ZEND_PARSE_PARAMETERS_END_EX(RETURN_FALSE); + ZEND_PARSE_PARAMETERS_END(); memset(&env, 0, sizeof(env)); |