diff options
-rw-r--r-- | plugins/Dropbox/src/file_transfer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dropbox/src/file_transfer.h b/plugins/Dropbox/src/file_transfer.h index 04a0e8c8f8..3def765d3e 100644 --- a/plugins/Dropbox/src/file_transfer.h +++ b/plugins/Dropbox/src/file_transfer.h @@ -71,7 +71,7 @@ struct FileTransferParam mir_free(pwszFolders);
}
- for (int i = 0; urlList.getCount(); i++)
+ for (int i = 0; i < urlList.getCount(); i++)
mir_free(urlList[i]);
urlList.destroy();
}
|