diff options
author | Nikita Popov <nikic@php.net> | 2014-04-15 21:14:40 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2014-04-15 22:20:06 +0200 |
commit | 9eb85698656b854995577476579cee2638b46260 (patch) | |
tree | 4701b10b3c867cc44135327cd690c38d002fae0c /ext/dom/php_dom.h | |
parent | a4bda5b1879c6455c97a6741bd36b0e2fcea73ec (diff) | |
download | php-git-9eb85698656b854995577476579cee2638b46260.tar.gz |
Make DOM mostly work
Diffstat (limited to 'ext/dom/php_dom.h')
-rw-r--r-- | ext/dom/php_dom.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/dom/php_dom.h b/ext/dom/php_dom.h index b38c402dfe..8f6eba12c0 100644 --- a/ext/dom/php_dom.h +++ b/ext/dom/php_dom.h @@ -84,12 +84,11 @@ typedef struct _dom_nnodemap_object { xmlHashTable *ht; xmlChar *local; xmlChar *ns; - zval *baseobjptr; } dom_nnodemap_object; typedef struct { - zend_object_iterator intern; - zval *curobj; + zend_object_iterator intern; + zval curobj; } php_dom_iterator; #include "dom_fe.h" |