mirror of
https://github.com/curl/curl.git
synced 2026-08-25 16:43:39 +03:00
quiche: remove 'static' from local buffer
For thread-safety Closes #6223
This commit is contained in:
parent
33a0b7ad73
commit
73b63876b1
1 changed files with 1 additions and 1 deletions
|
|
@ -384,7 +384,7 @@ static CURLcode flush_egress(struct connectdata *conn, int sockfd,
|
|||
struct quicsocket *qs)
|
||||
{
|
||||
ssize_t sent;
|
||||
static uint8_t out[1200];
|
||||
uint8_t out[1200];
|
||||
int64_t timeout_ns;
|
||||
|
||||
do {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue