Skip to content

Commit fc8393b

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: Fix GH-12791: Possible dereference of NULL in MySQLnd debug code
2 parents 4bb75d5 + 3269aa9 commit fc8393b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mysqlnd/mysqlnd_result.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,8 +733,8 @@ MYSQLND_METHOD(mysqlnd_res, store_result_fetch_data)(MYSQLND_CONN_DATA * const c
733733
UPSERT_STATUS_GET_SERVER_STATUS(conn->upsert_status));
734734
free_end:
735735
PACKET_FREE(&row_packet);
736+
DBG_INF_FMT("rows=%llu", (unsigned long long)set->row_count);
736737
end:
737-
DBG_INF_FMT("rows=%llu", (unsigned long long)result->stored_data->row_count);
738738
DBG_RETURN(ret);
739739
}
740740
/* }}} */

0 commit comments

Comments
 (0)