diff options
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index ed1245cf02..2e80d02f65 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -394,7 +394,7 @@ static void _pcre_match(INTERNAL_FUNCTION_PARAMETERS, int global) for (i=0; i<num_subpats; i++) { match_sets[i] = (zval *)emalloc(sizeof(zval)); array_init(match_sets[i]); - match_sets[i]->is_ref = 0; + match_sets[i]->EA = 0; match_sets[i]->refcount = 1; } } @@ -444,7 +444,7 @@ static void _pcre_match(INTERNAL_FUNCTION_PARAMETERS, int global) /* Allocate the result set array */ result_set = emalloc(sizeof(zval)); array_init(result_set); - result_set->is_ref = 0; + result_set->EA = 0; result_set->refcount = 1; /* Add all the subpatterns to it */ |