[PATCH] Fix memory leak in 'handle' allocated through function 'get_handle'

krishnaiah bommu krishnaiah.bommu at intel.com
Wed Sep 25 15:51:48 AEST 2019


---
 sftp-client.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sftp-client.c b/sftp-client.c
index 4fb6181..df76b7a 100644
--- a/sftp-client.c
+++ b/sftp-client.c
@@ -632,6 +632,7 @@ do_lsreaddir(struct sftp_conn *conn, const char *path, int print_flag,
 				free(filename);
 				free(longname);
 				sshbuf_free(msg);
+				free(handle);
 				return -1;
 			}
 
-- 
2.7.4



More information about the openssh-unix-dev mailing list