diff options
author | djm@openbsd.org <djm@openbsd.org> | 2021-02-02 23:35:14 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2021-02-05 03:38:57 +0100 |
commit | 3287790e78bf5b53c4a3cafb67bb5aa03e3910f0 (patch) | |
tree | 1c9274df3f79a430321137c57eb6a52b3a749fe8 /ssh-agent.c | |
parent | upstream: more strictly enforce KEX state-machine by banning packet (diff) | |
download | openssh-3287790e78bf5b53c4a3cafb67bb5aa03e3910f0.tar.xz openssh-3287790e78bf5b53c4a3cafb67bb5aa03e3910f0.zip |
upstream: memleak on error path; ok markus@
OpenBSD-Commit-ID: 2091a36d6ca3980c81891a6c4bdc544e63cb13a8
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index ea1ebb3e3..9bf6b0805 100644 --- a/ssh-agent.c +++ b/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.275 2021/01/29 06:29:46 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.276 2021/02/02 22:35:14 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -522,9 +522,9 @@ process_remove_identity(SocketEntry *e) TAILQ_REMOVE(&idtab->idlist, id, next); free_identity(id); idtab->nentries--; - sshkey_free(key); success = 1; done: + sshkey_free(key); send_status(e, success); } |