diff options
Diffstat (limited to 'kexdhs.c')
-rw-r--r-- | kexdhs.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kexdhs.c,v 1.25 2017/05/30 14:23:52 markus Exp $ */ | 1 | /* $OpenBSD: kexdhs.c,v 1.26 2018/02/07 02:06:51 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -208,14 +208,12 @@ input_kex_dh_init(int type, u_int32_t seq, struct ssh *ssh) | |||
208 | explicit_bzero(hash, sizeof(hash)); | 208 | explicit_bzero(hash, sizeof(hash)); |
209 | DH_free(kex->dh); | 209 | DH_free(kex->dh); |
210 | kex->dh = NULL; | 210 | kex->dh = NULL; |
211 | if (dh_client_pub) | 211 | BN_clear_free(dh_client_pub); |
212 | BN_clear_free(dh_client_pub); | ||
213 | if (kbuf) { | 212 | if (kbuf) { |
214 | explicit_bzero(kbuf, klen); | 213 | explicit_bzero(kbuf, klen); |
215 | free(kbuf); | 214 | free(kbuf); |
216 | } | 215 | } |
217 | if (shared_secret) | 216 | BN_clear_free(shared_secret); |
218 | BN_clear_free(shared_secret); | ||
219 | free(server_host_key_blob); | 217 | free(server_host_key_blob); |
220 | free(signature); | 218 | free(signature); |
221 | return r; | 219 | return r; |