From 68c34ce0dcf251169f9c41b4df66c06cd6993c5e Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sun, 9 Sep 2018 10:42:53 +0200 Subject: [PATCH] Make a copy unconditionally --- ext/pcre/php_pcre.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 7aa879d26d..5165209b85 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -739,7 +739,7 @@ PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex) efree(pattern); return NULL; } - _k = zend_string_dup(BG(locale_string), 1); + _k = zend_string_init(ZSTR_VAL(BG(locale_string)), ZSTR_LEN(BG(locale_string)), 1); zend_hash_add_ptr(&char_tables, _k, (void *)tables); zend_string_release(_k); } -- 2.40.0