[openssh-commits] [openssh] 01/01: upstream: fix memleak on session-bind path; from Pedro Martelletto, ok
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Apr 29 13:18:58 AEST 2022
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 247082b5013f0d4fcae8f97453f2a2f01bcda811
Author: djm at openbsd.org <djm at openbsd.org>
Date: Fri Apr 29 03:13:32 2022 +0000
upstream: fix memleak on session-bind path; from Pedro Martelletto, ok
dtucker@
OpenBSD-Commit-ID: e85899a26ba402b4c0717b531317e8fc258f0a7e
---
ssh-agent.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ssh-agent.c b/ssh-agent.c
index 03ae2b02..27d0548f 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-agent.c,v 1.287 2022/01/14 03:43:48 djm Exp $ */
+/* $OpenBSD: ssh-agent.c,v 1.288 2022/04/29 03:13:32 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -1570,6 +1570,7 @@ process_ext_session_bind(SocketEntry *e)
/* success */
r = 0;
out:
+ free(fp);
sshkey_free(key);
sshbuf_free(sid);
sshbuf_free(sig);
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list