1
0
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:
Niels Dossche
2023-10-22 21:11:16 +01:00
committed by GitHub
parent 046d7f95f1
commit 6b73fcc2b3

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;