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
1313 . Fixed bug #80024 (Duplication of info about inherited socket after pool
1414 removing). (Jakub Zelenka)
1515
16+ - LibXML:
17+ . Fixed bug #73533 (Invalid memory access in php_libxml_xmlCheckUTF8). (cmb)
18+
1619- Opcache:
1720 . Fixed bug #80839 (PHP problem with JIT). (Dmitry)
1821 . 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)
11581158/* {{{ Common functions shared by extensions */
11591159int php_libxml_xmlCheckUTF8 (const unsigned char * s )
11601160{
1161- int i ;
1161+ size_t i ;
11621162 unsigned char c ;
11631163
11641164 for (i = 0 ; (c = s [i ++ ]);) {
You can’t perform that action at this time.
0 commit comments