diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-07-07 09:30:24 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-07-07 09:30:24 +0200 |
commit | 302933daea77663f5759b10accd1d0231393b24c (patch) | |
tree | 6326b68e92b9be142944895cbf528c8d4661460c /ext/pcre/php_pcre.c | |
parent | e93aca7167bee0a9f15007759e4372170f469ef5 (diff) | |
download | php-git-302933daea77663f5759b10accd1d0231393b24c.tar.gz |
Remove no_separation flag
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 7aaaf3f695..16ec75d02b 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -1529,7 +1529,6 @@ static zend_string *preg_do_repl_func(zend_fcall_info *fci, zend_fcall_info_cach fci->retval = &retval; fci->param_count = 1; fci->params = &arg; - fci->no_separation = 1; if (zend_call_function(fci, fcc) == SUCCESS && Z_TYPE(retval) != IS_UNDEF) { if (EXPECTED(Z_TYPE(retval) == IS_STRING)) { |