[PATCH] Avoiding memory leak allocated by structure sshbuf b.

krishnaiah bommu krishnaiah.bommu at intel.com
Wed Oct 23 17:28:13 AEDT 2019


Signed-off-by: krishnaiah bommu <krishnaiah.bommu at intel.com>
---
 ssh-keysign.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ssh-keysign.c b/ssh-keysign.c
index 6cfd5b4..959757d 100644
--- a/ssh-keysign.c
+++ b/ssh-keysign.c
@@ -289,5 +289,6 @@ main(int argc, char **argv)
 	if (ssh_msg_send(STDOUT_FILENO, version, b) == -1)
 		fatal("ssh_msg_send failed");
 
+	sshbuf_free(b);
 	return (0);
 }
-- 
2.7.4



More information about the openssh-unix-dev mailing list