From 8bb39e7dba4afef51968cb42e091afa6a48b0015 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 15 Nov 2005 15:21:47 +0000 Subject: Allow recursive calls to __get/__set for different properties --- ext/dom/php_dom.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ext/dom/php_dom.c') diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c index af3ce66665..d65ad221e1 100644 --- a/ext/dom/php_dom.c +++ b/ext/dom/php_dom.c @@ -941,8 +941,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; -- cgit v1.2.1