summaryrefslogtreecommitdiff
path: root/ext/pcre/php_pcre.c
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2011-09-12 11:44:55 +0000
committerHannes Magnusson <bjori@php.net>2011-09-12 11:44:55 +0000
commit5e661cf904ac0a5f6f1bd3361c6f051e66247c96 (patch)
tree9b31eb9f3addbe94301513ce2aa1e35b6ffbb823 /ext/pcre/php_pcre.c
parentddac8c1789beb737c1a46f4ff2bde621d0610e40 (diff)
downloadphp-git-5e661cf904ac0a5f6f1bd3361c6f051e66247c96.tar.gz
Ensure we are working with strings here
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r--ext/pcre/php_pcre.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c
index 9311fc13f3..79c8f2d48c 100644
--- a/ext/pcre/php_pcre.c
+++ b/ext/pcre/php_pcre.c
@@ -1013,6 +1013,7 @@ PHPAPI char *php_pcre_replace_impl(pcre_cache_entry *pce, char *subject, int sub
return NULL;
}
} else {
+ convert_to_string_ex(&replace_val);
replace = Z_STRVAL_P(replace_val);
replace_len = Z_STRLEN_P(replace_val);
replace_end = replace + replace_len;