[git commit] ftpd: free allocated string on error path

Denys Vlasenko vda.linux at googlemail.com
Tue Jul 10 22:26:24 UTC 2012


commit: http://git.busybox.net/busybox/commit/?id=e1db338a5187c008819932a4166f3aa27958c48e
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/ftpd.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/networking/ftpd.c b/networking/ftpd.c
index 4ba96cf..33db964 100644
--- a/networking/ftpd.c
+++ b/networking/ftpd.c
@@ -927,6 +927,7 @@ handle_upload_common(int is_append, int is_unique)
 	 || fstat(local_file_fd, &statbuf) != 0
 	 || !S_ISREG(statbuf.st_mode)
 	) {
+		free(tempname);
 		WRITE_ERR(FTP_UPLOADFAIL);
 		if (local_file_fd >= 0)
 			goto close_local_and_bail;


More information about the busybox-cvs mailing list