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

Merge branch 'PHP-8.5'

* PHP-8.5:
  libxml: Fix input buffer deprecation
This commit is contained in:
Niels Dossche
2025-11-19 18:41:56 +01:00

View File

@@ -526,6 +526,7 @@ static int php_libxml_streams_IO_close(void *context)
return php_stream_close((php_stream*)context);
}
/* TODO: This needs to be replaced by context-specific APIs in the future! */
static xmlParserInputBufferPtr
php_libxml_input_buffer_create_filename(const char *URI, xmlCharEncoding enc)
{
@@ -560,13 +561,10 @@ php_libxml_input_buffer_create_filename(const char *URI, xmlCharEncoding enc)
}
/* Allocate the Input buffer front-end. */
ret = xmlAllocParserInputBuffer(enc);
if (ret != NULL) {
ret->context = context;
ret->readcallback = php_libxml_streams_IO_read;
ret->closecallback = php_libxml_streams_IO_close;
} else
ret = xmlParserInputBufferCreateIO(php_libxml_streams_IO_read, php_libxml_streams_IO_close, context, enc);
if (ret == NULL) {
php_libxml_streams_IO_close(context);
}
return ret;
}