1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

quiche: remove 'static' from local buffer

For thread-safety

Closes #6223
This commit is contained in:
Daniel Stenberg 2020-11-19 11:05:02 +01:00
parent 33a0b7ad73
commit 73b63876b1
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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 {