diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-03-19 12:00:38 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-03-19 12:01:37 +0100 |
commit | 38b16274d16f3a90dd42e340b8429041c6aa7365 (patch) | |
tree | e5eba08100240d50137b06d7692bd59b0af85fd3 /ext/pcre/php_pcre.c | |
parent | 525f19bef55387085e056891840dde344eb04338 (diff) | |
download | php-git-38b16274d16f3a90dd42e340b8429041c6aa7365.tar.gz |
Revert unintended change
I wanted to cache subpat names, but we can't do that because the
cache relives request boundaries.
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 2524e77246..106936e936 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -47,7 +47,6 @@ struct _pcre_cache_entry { pcre2_code *re; - zend_string **subpat_names; uint32_t preg_options; uint32_t capture_count; uint32_t name_count; |