PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2019, PHP 7.2.17
+?? ??? ????, PHP 7.3.4
-07 Mar 2019, PHP 7.2.16
+ - MySQLi:
+ . Fixed bug #77597 (mysqli_fetch_field hangs scripts). (Nikita)
+
+21 Feb 2019, PHP 7.3.3
- Core:
. Fixed bug #77589 (Core dump using parse_ini_string with numeric sections).
DBG_RETURN(FAIL);
}
- for (i = 0; i < result->row_count; i++) {
- /* (i / 8) & the_bit_for_i*/
- if (ZEND_BIT_TEST(initialized, i)) {
+ for (row = 0; row < result->row_count; row++) {
- /* (i / 8) & the_bit_for_i*/
- if (initialized[row >> 3] & (1 << (row & 7))) {
++ /* (row / 8) & the_bit_for_row*/
++ if (ZEND_BIT_TEST(initialized, row)) {
continue;
}
- rc = result->m.row_decoder(&result->row_buffers[i], current_row, field_count, meta->fields, int_and_float_native, stats);
- rc = result->m.row_decoder(result->row_buffers[row], current_row, field_count, meta->fields, int_and_float_native, stats);
++ rc = result->m.row_decoder(&result->row_buffers[row], current_row, field_count, meta->fields, int_and_float_native, stats);
if (rc != PASS) {
ret = FAIL;