diff options
author | Tomas Mraz <tomas@openssl.org> | 2021-02-11 15:25:35 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2021-02-12 19:05:17 +0100 |
commit | 89e14ca7c7003b3b5874a8dac3f21521a4f844b4 (patch) | |
tree | 98e15e922363e14e9646ebd3562bc8f80d1d0e73 /ssl/t1_lib.c | |
parent | VMS documentation fixes (diff) | |
download | openssl-89e14ca7c7003b3b5874a8dac3f21521a4f844b4.tar.xz openssl-89e14ca7c7003b3b5874a8dac3f21521a4f844b4.zip |
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.c | 2 |
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; |