1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-06 03:44:29 +00:00

Fix possible crashes in full allocation mode

This commit is contained in:
Christophe Dumez 2011-01-13 20:38:38 +00:00
parent 6996ccc2c8
commit eb0053fe48
2 changed files with 5 additions and 3 deletions

View File

@ -2582,7 +2582,7 @@ void QBtSession::handleIPFilterError()
emit ipFilterParsed(true, 0); emit ipFilterParsed(true, 0);
} }
entry QBtSession::generateFilePriorityResumeData(boost::intrusive_ptr<torrent_info> t, const std::vector<int> &fp) entry QBtSession::generateFilePriorityResumeData(boost::intrusive_ptr<torrent_info> &t, const std::vector<int> &fp)
{ {
entry::dictionary_type rd; entry::dictionary_type rd;
rd["file-format"] = "libtorrent resume file"; rd["file-format"] = "libtorrent resume file";
@ -2600,6 +2600,7 @@ entry QBtSession::generateFilePriorityResumeData(boost::intrusive_ptr<torrent_in
rd["file_priority"] = entry(priorities); rd["file_priority"] = entry(priorities);
// files sizes (useless but required) // files sizes (useless but required)
entry::list_type sizes; entry::list_type sizes;
sizes.resize(t->num_files());
for(int i=0; i<t->num_files(); ++i) { for(int i=0; i<t->num_files(); ++i) {
entry::list_type p; entry::list_type p;
p.push_back(entry(0)); p.push_back(entry(0));
@ -2616,7 +2617,8 @@ entry QBtSession::generateFilePriorityResumeData(boost::intrusive_ptr<torrent_in
rd["slots"] = entry(tslots); rd["slots"] = entry(tslots);
entry::string_type pieces; entry::string_type pieces;
std::memset(&pieces[0], 0, t->num_pieces()); pieces.resize(t->num_pieces());
std::memset(&pieces[0], 0, pieces.size());
rd["pieces"] = entry(pieces); rd["pieces"] = entry(pieces);
entry ret(rd); entry ret(rd);

View File

@ -167,7 +167,7 @@ private:
void loadTorrentSettings(QTorrentHandle h); void loadTorrentSettings(QTorrentHandle h);
void loadTorrentTempData(QTorrentHandle h, QString savePath, bool magnet); void loadTorrentTempData(QTorrentHandle h, QString savePath, bool magnet);
libtorrent::add_torrent_params initializeAddTorrentParams(QString hash); libtorrent::add_torrent_params initializeAddTorrentParams(QString hash);
libtorrent::entry generateFilePriorityResumeData(boost::intrusive_ptr<libtorrent::torrent_info> t, const std::vector<int> &fp); libtorrent::entry generateFilePriorityResumeData(boost::intrusive_ptr<libtorrent::torrent_info> &t, const std::vector<int> &fp);
private slots: private slots:
void addTorrentsFromScanFolder(QStringList&); void addTorrentsFromScanFolder(QStringList&);