We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 688e56d commit 498eb8eCopy full SHA for 498eb8e
NEWS
@@ -9,6 +9,9 @@ PHP NEWS
9
. Fixed bug #80024 (Duplication of info about inherited socket after pool
10
removing). (Jakub Zelenka)
11
12
+- LibXML:
13
+ . Fixed bug #73533 (Invalid memory access in php_libxml_xmlCheckUTF8). (cmb)
14
+
15
- PDO_ODBC:
16
. Fixed bug #80783 (PDO ODBC truncates BLOB records at every 256th byte).
17
(cmb)
ext/libxml/libxml.c
@@ -1182,7 +1182,7 @@ static PHP_FUNCTION(libxml_set_external_entity_loader)
1182
/* {{{ Common functions shared by extensions */
1183
int php_libxml_xmlCheckUTF8(const unsigned char *s)
1184
{
1185
- int i;
+ size_t i;
1186
unsigned char c;
1187
1188
for (i = 0; (c = s[i++]);) {
0 commit comments