1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix yet another xml deprecation

This commit is contained in:
Ilija Tovilo
2025-12-03 14:51:52 +01:00
parent 667b28cba4
commit fe070fcc75

View File

@@ -716,6 +716,7 @@ XML_GetCurrentByteIndex(XML_Parser parser)
* Although that should probably be corrected at one point? (TODO) */
xmlCharEncodingHandlerPtr encoder = NULL;
xmlParserInputPtr input = parser->parser->input;
ZEND_DIAGNOSTIC_IGNORED_START("-Wdeprecated-declarations")
if (input->buf) {
encoder = input->buf->encoder;
input->buf->encoder = NULL;
@@ -724,6 +725,7 @@ XML_GetCurrentByteIndex(XML_Parser parser)
if (encoder) {
input->buf->encoder = encoder;
}
ZEND_DIAGNOSTIC_IGNORED_END
/* TODO: at one point this should return long probably to make sure that files greater than 2 GiB are handled correctly. */
return (int) result;
}