From 89e14ca7c7003b3b5874a8dac3f21521a4f844b4 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Thu, 11 Feb 2021 15:25:35 +0100 Subject: [PATCH] tls_valid_group: Add missing dereference of okfortls13 Fixes #14153 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/14154) --- ssl/t1_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 684e8494fc5..ace890d915d 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -526,7 +526,7 @@ int tls_valid_group(SSL *s, uint16_t group_id, int minversion, int maxversion, int ret; if (okfortls13 != NULL) - okfortls13 = 0; + *okfortls13 = 0; if (ginfo == NULL) return 0; -- 2.47.3