[PATCH] Avoiding memory leak allocated by box.

krishnaiah bommu krishnaiah.bommu at intel.com
Tue Oct 22 22:45:09 AEDT 2019


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

diff --git a/sshd.c b/sshd.c
index 11571c0..1f2df20 100644
--- a/sshd.c
+++ b/sshd.c
@@ -539,6 +539,7 @@ privsep_preauth(struct ssh *ssh)
 		if (box != NULL)
 			ssh_sandbox_child(box);
 
+		free(box);
 		return 0;
 	}
 }
-- 
2.7.4



More information about the openssh-unix-dev mailing list