aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/ftp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index f092cbb3a..1cb5d14da 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -1316,8 +1316,11 @@ static CURLcode ftp_state_post_listtype(struct connectdata *conn)
lstArg? " ": "",
lstArg? lstArg: "" );
- if(!cmd)
+ if(!cmd) {
+ if(lstArg)
+ free(lstArg);
return CURLE_OUT_OF_MEMORY;
+ }
NBFTPSENDF(conn, "%s",cmd);