1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 19:41:05 +02:00

Merge branch 'PHP-8.0'

* PHP-8.0:
  Report gone away error in one more place
This commit is contained in:
Nikita Popov
2020-10-29 12:47:32 +01:00

View File

@@ -1396,6 +1396,8 @@ php_mysqlnd_read_row_ex(MYSQLND_PFC * pfc,
*data_size = 0;
if (UNEXPECTED(FAIL == mysqlnd_read_header(pfc, vio, &header, stats, error_info))) {
ret = FAIL;
SET_CONNECTION_STATE(connection_state, CONN_QUIT_SENT);
set_packet_error(error_info, CR_SERVER_GONE_ERROR, UNKNOWN_SQLSTATE, mysqlnd_server_gone);
} else {
*data_size += header.size;
buffer->ptr = pool->get_chunk(pool, *data_size + prealloc_more_bytes);