summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2005-11-15 14:18:15 +0000
committerDmitry Stogov <dmitry@php.net>2005-11-15 14:18:15 +0000
commit3c1932648099e853790a9f679f4abf072e4b27ff (patch)
tree4fcff8fa53e8e121bb3fef56c5375cbf05eb5075
parent23a3fdbf048c9bc4e772d1c64352b797187f1d96 (diff)
downloadphp-git-3c1932648099e853790a9f679f4abf072e4b27ff.tar.gz
Allow recursive calls to __get/__set for different properties
-rw-r--r--ext/dom/php_dom.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c
index 24e3469e3b..12f266ae67 100644
--- a/ext/dom/php_dom.c
+++ b/ext/dom/php_dom.c
@@ -934,8 +934,7 @@ static dom_object* dom_objects_set_class(zend_class_entry *class_type, zend_bool
intern = emalloc(sizeof(dom_object));
intern->std.ce = class_type;
- intern->std.in_get = 0;
- intern->std.in_set = 0;
+ intern->std.guards = NULL;
intern->ptr = NULL;
intern->prop_handler = NULL;
intern->document = NULL;