We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 046d7f9 commit 6b73fccCopy full SHA for 6b73fcc
ext/xml/xml.c
@@ -61,7 +61,6 @@ ZEND_DECLARE_MODULE_GLOBALS(xml)
61
#define XML(v) ZEND_MODULE_GLOBALS_ACCESSOR(xml, v)
62
63
typedef struct {
64
- int case_folding;
65
XML_Parser parser;
66
XML_Char *target_encoding;
67
@@ -88,10 +87,11 @@ typedef struct {
88
87
int curtag;
89
zval *ctag;
90
char **ltags;
91
- int lastwasopen;
92
- int skipwhite;
93
- int isparsing;
+ bool lastwasopen;
+ bool skipwhite;
+ bool isparsing;
94
bool parsehuge;
+ bool case_folding;
95
96
XML_Char *baseURI;
97
0 commit comments