From: simon Date: Mon, 29 Sep 2003 15:39:36 +0000 (+0000) Subject: Obvious memory leak in new fast download management. Oops. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/9ff4e23db2fbfb85ef8c76c8c079c1326190f1ad Obvious memory leak in new fast download management. Oops. git-svn-id: svn://svn.tartarus.org/sgt/putty@3471 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/psftp.c b/psftp.c index c1d4950b..ca01f12a 100644 --- a/psftp.c +++ b/psftp.c @@ -472,6 +472,8 @@ int sftp_general_get(struct sftp_command *cmd, int restart) ret = 0; xfer_set_error(xfer); } + + sfree(vbuf); } }