summaryrefslogtreecommitdiff
path: root/ext/xml/php_xml.h
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2005-04-28 12:16:32 +0000
committerRob Richards <rrichards@php.net>2005-04-28 12:16:32 +0000
commit1ed5c14fe29ec031332543c12ef19b7a1bd27f93 (patch)
tree1ffb2c9744dcac123b2323dab68a171365b78daa /ext/xml/php_xml.h
parent085f2a6980535fb296a7c6654154ef4f4435722b (diff)
downloadphp-git-1ed5c14fe29ec031332543c12ef19b7a1bd27f93.tar.gz
- Fix bug #32245 (xml_parser_free() in function assigned to the xml parser
gives a segfault)
Diffstat (limited to 'ext/xml/php_xml.h')
-rw-r--r--ext/xml/php_xml.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/xml/php_xml.h b/ext/xml/php_xml.h
index 1864937b04..d8e71c18f0 100644
--- a/ext/xml/php_xml.h
+++ b/ext/xml/php_xml.h
@@ -90,6 +90,7 @@ typedef struct {
char **ltags;
int lastwasopen;
int skipwhite;
+ int isparsing;
XML_Char *baseURI;
} xml_parser;