gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 57/151: ngtcp2: fix thread-safety bug in error-handling


From: gnunet
Subject: [gnurl] 57/151: ngtcp2: fix thread-safety bug in error-handling
Date: Fri, 20 Dec 2019 14:26:06 +0100

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

ng0 pushed a commit to branch master
in repository gnurl.

commit d94aa39410256cbbfb0ddf71cb7f93f6cdf10d37
Author: David Benjamin <address@hidden>
AuthorDate: Wed Nov 27 16:53:51 2019 -0500

    ngtcp2: fix thread-safety bug in error-handling
    
    ERR_error_string(NULL) should never be called. It places the error in a
    global buffer, which is not thread-safe. Use ERR_error_string_n with a
    local buffer instead.
    
    Closes #4645
---
 lib/vquic/ngtcp2.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c
index 071d45c02..7d8b98e90 100644
--- a/lib/vquic/ngtcp2.c
+++ b/lib/vquic/ngtcp2.c
@@ -256,8 +256,9 @@ static SSL_CTX *quic_ssl_ctx(struct Curl_easy *data)
   SSL_CTX_set_default_verify_paths(ssl_ctx);
 
   if(SSL_CTX_set_ciphersuites(ssl_ctx, QUIC_CIPHERS) != 1) {
-    failf(data, "SSL_CTX_set_ciphersuites: %s",
-          ERR_error_string(ERR_get_error(), NULL));
+    char error_buffer[256];
+    ERR_error_string_n(ERR_get_error(), error_buffer, sizeof(error_buffer));
+    failf(data, "SSL_CTX_set_ciphersuites: %s", error_buffer);
     return NULL;
   }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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