Merge pull request #4733 from glassez/fix

Fix upgrade corrupted fastresume file
This commit is contained in:
sledgehammer999 2016-02-01 09:25:11 -06:00
commit 232af6b802

View file

@ -88,7 +88,7 @@ bool upgradeResumeFile(const QString &filepath, const QVariantHash &oldTorrent,
libtorrent::lazy_entry fastOld;
libtorrent::error_code ec;
libtorrent::lazy_bdecode(data.constData(), data.constData() + data.size(), fastOld, ec);
if ((fastOld.type() != libtorrent::lazy_entry::dict_t) && !ec) return false;
if (ec || (fastOld.type() != libtorrent::lazy_entry::dict_t)) return false;
libtorrent::entry fastNew;
fastNew = fastOld;