summaryrefslogtreecommitdiffstats
path: root/ssl/t1_lib.c
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-02-11 15:25:35 +0100
committerTomas Mraz <tomas@openssl.org>2021-02-12 19:05:17 +0100
commit89e14ca7c7003b3b5874a8dac3f21521a4f844b4 (patch)
tree98e15e922363e14e9646ebd3562bc8f80d1d0e73 /ssl/t1_lib.c
parentd8c1cafbbc5dfe2347a7157178db5b50fdf9d248 (diff)
tls_valid_group: Add missing dereference of okfortls13
Fixes #14153 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14154)
Diffstat (limited to 'ssl/t1_lib.c')
-rw-r--r--ssl/t1_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
index 684e8494fc..ace890d915 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;