summaryrefslogtreecommitdiff
path: root/ext/pcre/php_pcre.c
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2016-05-14 08:20:41 +0100
committerJoe Watkins <krakjoe@php.net>2016-05-14 08:21:32 +0100
commit90f46f2c5bdd3ab0e5dbc3aec1b3294ea1981abe (patch)
treef8306950490a531a541c21b3eb899dc2afc28acb /ext/pcre/php_pcre.c
parent4a42fbbbc73aad7427aef5c89974d1833636e082 (diff)
downloadphp-git-90f46f2c5bdd3ab0e5dbc3aec1b3294ea1981abe.tar.gz
fix #72143 (preg_replace uses int instead of size_t on zend_string_allocs)
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r--ext/pcre/php_pcre.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c
index 35ba1a06f1..9225c0f976 100644
--- a/ext/pcre/php_pcre.c
+++ b/ext/pcre/php_pcre.c
@@ -1119,8 +1119,8 @@ PHPAPI zend_string *php_pcre_replace_impl(pcre_cache_entry *pce, zend_string *su
char **subpat_names; /* Array for named subpatterns */
int num_subpats; /* Number of captured subpatterns */
int size_offsets; /* Size of the offsets array */
- int new_len; /* Length of needed storage */
- int alloc_len; /* Actual allocated length */
+ size_t new_len; /* Length of needed storage */
+ size_t alloc_len; /* Actual allocated length */
int match_len; /* Length of the current match */
int backref; /* Backreference number */
int start_offset; /* Where the new search starts */