summaryrefslogtreecommitdiffstats
path: root/apps/s_server.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-05-29 15:59:25 +0100
committerMatt Caswell <matt@openssl.org>2018-05-31 10:39:13 +0100
commitfbccfedf9bb0840e6c2db54b66ac511b85a3f587 (patch)
treecca59b091ab61644132bb35aef0a83c771062685 /apps/s_server.c
parent6712ba9323cd9dc550ae3cc258cb61b5b23dcd83 (diff)
Free a variable on an error path
Issue found by Coverity. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6373)
Diffstat (limited to 'apps/s_server.c')
-rw-r--r--apps/s_server.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/s_server.c b/apps/s_server.c
index b0d38e4849..df2bf02a6e 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -212,6 +212,7 @@ static int psk_find_session_cb(SSL *ssl, const unsigned char *identity,
cipher = SSL_CIPHER_find(ssl, tls13_aes128gcmsha256_id);
if (cipher == NULL) {
BIO_printf(bio_err, "Error finding suitable ciphersuite\n");
+ OPENSSL_free(key);
return 0;
}