Skip to content

Commit 7067f7c

Browse files
committed
Fixed incorrect buffer reallocation
1 parent a5014d7 commit 7067f7c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

ext/mysqlnd/mysqlnd_result.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1271,7 +1271,6 @@ MYSQLND_METHOD(mysqlnd_res, store_result_fetch_data)(MYSQLND_CONN_DATA * const c
12711271
while (FAIL != (ret = PACKET_READ(conn, &row_packet)) && !row_packet.eof) {
12721272
if (!free_rows) {
12731273
MYSQLND_ROW_BUFFER * new_row_buffers;
1274-
total_allocated_rows += set->row_count;
12751274

12761275
if (total_allocated_rows < 1024) {
12771276
if (total_allocated_rows == 0) {

0 commit comments

Comments
 (0)