Skip to content

Commit

Permalink
quiche: remove 'static' from local buffer
Browse files Browse the repository at this point in the history
For thread-safety

Closes #6223
  • Loading branch information
bagder committed Nov 19, 2020
1 parent 33a0b7a commit 73b6387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vquic/quiche.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 73b6387

Please sign in to comment.