File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ PHP NEWS
13
13
. Fixed bug #80024 (Duplication of info about inherited socket after pool
14
14
removing). (Jakub Zelenka)
15
15
16
+ - LibXML:
17
+ . Fixed bug #73533 (Invalid memory access in php_libxml_xmlCheckUTF8). (cmb)
18
+
16
19
- Opcache:
17
20
. Fixed bug #80839 (PHP problem with JIT). (Dmitry)
18
21
. Fixed bug #80861 (erronous array key overflow in 2D array with JIT).
Original file line number Diff line number Diff line change @@ -1158,7 +1158,7 @@ PHP_FUNCTION(libxml_set_external_entity_loader)
1158
1158
/* {{{ Common functions shared by extensions */
1159
1159
int php_libxml_xmlCheckUTF8 (const unsigned char * s )
1160
1160
{
1161
- int i ;
1161
+ size_t i ;
1162
1162
unsigned char c ;
1163
1163
1164
1164
for (i = 0 ; (c = s [i ++ ]);) {
You can’t perform that action at this time.
0 commit comments