mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
I don't know if 'c' can be NULL here, but we should not dereference it before checking.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1831591 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -2552,7 +2552,7 @@ int ssl_callback_alpn_select(SSL *ssl,
|
||||
void *arg)
|
||||
{
|
||||
conn_rec *c = (conn_rec*)SSL_get_app_data(ssl);
|
||||
SSLConnRec *sslconn = myConnConfig(c);
|
||||
SSLConnRec *sslconn;
|
||||
apr_array_header_t *client_protos;
|
||||
const char *proposed;
|
||||
size_t len;
|
||||
@@ -2563,6 +2563,7 @@ int ssl_callback_alpn_select(SSL *ssl,
|
||||
if (c == NULL) {
|
||||
return SSL_TLSEXT_ERR_OK;
|
||||
}
|
||||
sslconn = myConnConfig(c);
|
||||
|
||||
if (inlen == 0) {
|
||||
/* someone tries to trick us? */
|
||||
|
Reference in New Issue
Block a user