summaryrefslogtreecommitdiff
path: root/ext/pcre/php_pcre.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-07-09 17:44:41 +0000
committerZeev Suraski <zeev@php.net>1999-07-09 17:44:41 +0000
commit5f62c347c73300d5903a110c863be45b3b96c9f8 (patch)
tree352a88767f9131214ee23b909e0bb7ac29ea31f0 /ext/pcre/php_pcre.c
parent3a9cb0220ce35e82065e92c4477b81373ab3e234 (diff)
downloadphp-git-5f62c347c73300d5903a110c863be45b3b96c9f8.tar.gz
Step 2:
Rename is_ref to EA
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 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 */