diff options
author | Xinchen Hui <laruence@php.net> | 2012-10-18 20:14:54 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2012-10-18 20:14:54 +0800 |
commit | 9714ceb92b4aa6d145b6d05e3b1e20c0383bc6be (patch) | |
tree | 7c2b60d96ea5638c8b22df464640987238f44351 | |
parent | 84efca62ff505601fe9037f34dbdcf96c6ee8fd9 (diff) | |
parent | f1478bbf9d7cd312607e829a32ed5582e386adac (diff) | |
download | php-git-9714ceb92b4aa6d145b6d05e3b1e20c0383bc6be.tar.gz |
Merge branch 'PHP-5.4'
-rw-r--r-- | ext/pcre/php_pcre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index eb59f28d44..6d393a26a7 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -555,7 +555,7 @@ PHPAPI void php_pcre_match_impl(pcre_cache_entry *pce, char *subject, int subjec /* Overwrite the passed-in value for subpatterns with an empty array. */ if (subpats != NULL) { - zval_dtor(subpats); + zval_dtor(subpats); array_init(subpats); } |