mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Convert ext/xml fields from int to bool (#12497)
This commit is contained in:
@@ -61,7 +61,6 @@ ZEND_DECLARE_MODULE_GLOBALS(xml)
|
||||
#define XML(v) ZEND_MODULE_GLOBALS_ACCESSOR(xml, v)
|
||||
|
||||
typedef struct {
|
||||
int case_folding;
|
||||
XML_Parser parser;
|
||||
XML_Char *target_encoding;
|
||||
|
||||
@@ -88,10 +87,11 @@ typedef struct {
|
||||
int curtag;
|
||||
zval *ctag;
|
||||
char **ltags;
|
||||
int lastwasopen;
|
||||
int skipwhite;
|
||||
int isparsing;
|
||||
bool lastwasopen;
|
||||
bool skipwhite;
|
||||
bool isparsing;
|
||||
bool parsehuge;
|
||||
bool case_folding;
|
||||
|
||||
XML_Char *baseURI;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user