diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-03-12 11:29:59 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-03-12 11:29:59 +0000 |
commit | d8d1baa7d5c286c907d18d278738331debc0aabd (patch) | |
tree | c6733298324026d6bd4ec0278bd3888a8f8b8be5 /plugins/Dropbox/src/file_transfer.h | |
parent | fcdaeaff6d96bf8a93c4f3c3426eff3146146d58 (diff) |
Dropbox:
- fixed message with download link
- fixed minor bug in file uploading
git-svn-id: http://svn.miranda-ng.org/main/trunk@8570 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/file_transfer.h')
-rw-r--r-- | plugins/Dropbox/src/file_transfer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/Dropbox/src/file_transfer.h b/plugins/Dropbox/src/file_transfer.h index 9dbaf97073..35d18bbf08 100644 --- a/plugins/Dropbox/src/file_transfer.h +++ b/plugins/Dropbox/src/file_transfer.h @@ -36,6 +36,9 @@ struct FileTransferParam ~FileTransferParam()
{
+ if (pfts.wszWorkingDir)
+ mir_free(pfts.wszWorkingDir);
+
if (pfts.pszFiles)
{
for (int i = 0; pfts.pszFiles[i]; i++)
|