gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 353/411: quiche: remove 'static' from local buffer


From: gnunet
Subject: [gnurl] 353/411: quiche: remove 'static' from local buffer
Date: Wed, 13 Jan 2021 01:22:48 +0100

This is an automated email from the git hooks/post-receive script.

nikita pushed a commit to branch master
in repository gnurl.

commit 73b63876b1d7ede288f38b35ad664b2f9d058825
Author: Daniel Stenberg <daniel@haxx.se>
AuthorDate: Thu Nov 19 11:05:02 2020 +0100

    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 {

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]