If-guard to avoid null ptr deref in statem_srvr.c
[openssl.git] / ssl / statem / statem_srvr.c
index c26c93bdc97da9fef257c7e823b228cda6548e42..e2d618c86365a57229366a1ee1e0e313caaf66d9 100644 (file)
@@ -1444,7 +1444,8 @@ MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
  err:
     ossl_statem_set_error(s);
 
-    OPENSSL_free(clienthello->pre_proc_exts);
+    if (clienthello != NULL)
+        OPENSSL_free(clienthello->pre_proc_exts);
     OPENSSL_free(clienthello);
 
     return MSG_PROCESS_ERROR;