summaryrefslogtreecommitdiffstats
path: root/lib/libssl/tls13_server.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2020-02-04 18:00:30 +0000
committerjsing <jsing@openbsd.org>2020-02-04 18:00:30 +0000
commitdaaa2dc51eb27a65687d63edfed7cb6374475a85 (patch)
tree56a9eea9cd63703b531fb9140b6e9fb4a265c1fc /lib/libssl/tls13_server.c
parentRemove unused files. (diff)
downloadwireguard-openbsd-daaa2dc51eb27a65687d63edfed7cb6374475a85.tar.xz
wireguard-openbsd-daaa2dc51eb27a65687d63edfed7cb6374475a85.zip
Free the transcript as soon as we initialise the transcript hash.
Unlike TLSv1.2 there is only a single hash in use, hence as soon as we know what the hash is and have initialised the transcript hash, we can free the transcript buffers. ok inoguchi@ tb@
Diffstat (limited to 'lib/libssl/tls13_server.c')
-rw-r--r--lib/libssl/tls13_server.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/tls13_server.c b/lib/libssl/tls13_server.c
index 1f17fe4ab0b..660508a1210 100644
--- a/lib/libssl/tls13_server.c
+++ b/lib/libssl/tls13_server.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls13_server.c,v 1.22 2020/01/30 17:09:23 jsing Exp $ */
+/* $OpenBSD: tls13_server.c,v 1.23 2020/02/04 18:00:30 jsing Exp $ */
/*
* Copyright (c) 2019, 2020 Joel Sing <jsing@openbsd.org>
* Copyright (c) 2020 Bob Beck <beck@openbsd.org>
@@ -586,6 +586,7 @@ tls13_server_hello_sent(struct tls13_ctx *ctx)
/* XXX - pass in hash. */
if (!tls1_transcript_hash_init(s))
goto err;
+ tls1_transcript_free(s);
if (!tls1_transcript_hash_value(s, buf, sizeof(buf), &hash_len))
goto err;
context.data = buf;