From: Arran Cudbard-Bell Date: Fri, 29 Sep 2017 09:24:30 +0000 (+0800) Subject: We no longer need to check if request is NULL X-Git-Tag: release_3_0_16~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=591de652cb79870ef56c976c162a53c5fabbd7ca;p=thirdparty%2Ffreeradius-server.git We no longer need to check if request is NULL --- diff --git a/src/main/cb.c b/src/main/cb.c index 3158b24df27..4ae14e575be 100644 --- a/src/main/cb.c +++ b/src/main/cb.c @@ -32,8 +32,6 @@ void cbtls_info(SSL const *s, int where, int ret) char const *str, *state; REQUEST *request = SSL_get_ex_data(s, FR_TLS_EX_INDEX_REQUEST); - if (!request) return; - if ((where & ~SSL_ST_MASK) & SSL_ST_CONNECT) { str="TLS_connect"; } else if (((where & ~SSL_ST_MASK)) & SSL_ST_ACCEPT) {