From: Tomas Mraz Date: Thu, 11 Feb 2021 14:25:35 +0000 (+0100) Subject: tls_valid_group: Add missing dereference of okfortls13 X-Git-Tag: openssl-3.0.0-alpha12~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89e14ca7c7003b3b5874a8dac3f21521a4f844b4;p=thirdparty%2Fopenssl.git tls_valid_group: Add missing dereference of okfortls13 Fixes #14153 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/14154) --- 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;