diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-11 20:59:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-11 20:59:59 +0000 |
commit | 5a78cf645360b46753e4eed4fa12804d0188fffc (patch) | |
tree | 5c61e0cfcee793f150b3893ddc9636176ebadbcc /plugins/Dropbox | |
parent | a107c8d9007053f600d969d2e68373ba2d79bca9 (diff) |
fix for an endless cycle
git-svn-id: http://svn.miranda-ng.org/main/trunk@13558 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox')
-rw-r--r-- | plugins/Dropbox/src/dropbox_transfers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dropbox/src/dropbox_transfers.cpp b/plugins/Dropbox/src/dropbox_transfers.cpp index a38a806fe2..8c520c69c3 100644 --- a/plugins/Dropbox/src/dropbox_transfers.cpp +++ b/plugins/Dropbox/src/dropbox_transfers.cpp @@ -256,7 +256,7 @@ UINT CDropbox::SendFilesAndReportAsync(void *owner, void *arg) if (!res)
{
CMStringA urls;
- for (int i = 0; ftp->urlList.getCount(); i++)
+ for (int i = 0; i < ftp->urlList.getCount(); i++)
urls.AppendFormat("%s\r\n", ftp->urlList[i]);
char *data = urls.GetBuffer();
|