aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2007-10-02 19:19:47 +0000
committerYang Tse <yangsita@gmail.com>2007-10-02 19:19:47 +0000
commit08b9f7321992fd14dfe7dcd65e24069cc0ce3ed5 (patch)
tree354cb8d2a9196eac4cef5dd009712d7e6f425d3a /lib/ftp.c
parent94162d62aca15e3d900513a8f37bc84a12db5d16 (diff)
Fix memory leak under low memory conditions.
Diffstat (limited to 'lib/ftp.c')
-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);