From 73b63876b1d7ede288f38b35ad664b2f9d058825 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 19 Nov 2020 11:05:02 +0100 Subject: quiche: remove 'static' from local buffer For thread-safety Closes #6223 --- lib/vquic/quiche.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c index 15e148fdb..d4817072c 100644 --- a/lib/vquic/quiche.c +++ b/lib/vquic/quiche.c @@ -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 { -- cgit v1.2.1