diff options
Diffstat (limited to 'packet.c')
-rw-r--r-- | packet.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: packet.c,v 1.276 2018/07/09 21:03:30 markus Exp $ */ | 1 | /* $OpenBSD: packet.c,v 1.277 2018/07/16 03:09:13 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -622,6 +622,8 @@ ssh_packet_close_internal(struct ssh *ssh, int do_close) | |||
622 | cipher_free(state->receive_context); | 622 | cipher_free(state->receive_context); |
623 | state->send_context = state->receive_context = NULL; | 623 | state->send_context = state->receive_context = NULL; |
624 | if (do_close) { | 624 | if (do_close) { |
625 | free(ssh->local_ipaddr); | ||
626 | ssh->local_ipaddr = NULL; | ||
625 | free(ssh->remote_ipaddr); | 627 | free(ssh->remote_ipaddr); |
626 | ssh->remote_ipaddr = NULL; | 628 | ssh->remote_ipaddr = NULL; |
627 | free(ssh->state); | 629 | free(ssh->state); |