diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-11-19 11:05:02 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-11-19 13:34:44 +0100 |
commit | 73b63876b1d7ede288f38b35ad664b2f9d058825 (patch) | |
tree | b356eb17ac03a2796e11ee588d6c8c7cbf0a55e1 | |
parent | 33a0b7ad73948df92d866d43002c7c200eb57b84 (diff) | |
download | curl-73b63876b1d7ede288f38b35ad664b2f9d058825.tar.gz |
quiche: remove 'static' from local buffer
For thread-safety
Closes #6223
-rw-r--r-- | lib/vquic/quiche.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |