Skip to content

Commit

Permalink
Merge branch 'PHP-8.3'
Browse files Browse the repository at this point in the history
* PHP-8.3:
  Avoid using uninitialised struct
  • Loading branch information
nielsdos committed Nov 25, 2023
2 parents ed43106 + f8bfc0e commit 1e7c64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/mysqlnd/mysqlnd_result.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ mysqlnd_query_read_result_set_header(MYSQLND_CONN_DATA * conn, MYSQLND_STMT * s)
}
MYSQLND_INC_CONN_STATISTIC(conn->stats, statistic);
}
PACKET_FREE(&fields_eof);
} while (0);
PACKET_FREE(&fields_eof);
break; /* switch break */
}
} while (0);
Expand Down

0 comments on commit 1e7c64b

Please sign in to comment.