Ensure we are working with strings here

This commit is contained in:
Hannes Magnusson 2011-09-12 11:44:55 +00:00
parent 17858fc789
commit 7bb31903c8

View File

@ -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;