Convert ext/xml fields from int to bool (#12497)

This commit is contained in:
Niels Dossche 2023-10-22 21:11:16 +01:00 committed by GitHub
parent 046d7f95f1
commit 6b73fcc2b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;