Browse Source

Avoid potential container detachment

Suppress clazy warning:
warning: Don't call QList::operator[]() on temporary [-Wclazy-detaching-temporary]
adaptive-webui-19844
Chocobo1 3 years ago
parent
commit
c8b66b25e8
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 2
      src/base/bittorrent/torrentimpl.cpp
  2. 2
      src/base/utils/misc.cpp

2
src/base/bittorrent/torrentimpl.cpp

@ -1616,7 +1616,7 @@ void TorrentImpl::renameFile(const int index, const QString &path) @@ -1616,7 +1616,7 @@ void TorrentImpl::renameFile(const int index, const QString &path)
m_oldPath[index].push_back(oldPath);
#endif
++m_renameCount;
m_nativeHandle.rename_file(m_torrentInfo.nativeIndexes()[index], Utils::Fs::toNativePath(path).toStdString());
m_nativeHandle.rename_file(m_torrentInfo.nativeIndexes().at(index), Utils::Fs::toNativePath(path).toStdString());
}
void TorrentImpl::handleStateUpdate(const lt::torrent_status &nativeStatus)

2
src/base/utils/misc.cpp

@ -498,7 +498,7 @@ QString Utils::Misc::opensslVersionString() @@ -498,7 +498,7 @@ QString Utils::Misc::opensslVersionString()
#else
static const auto version {QString::fromLatin1(SSLeay_version(SSLEAY_VERSION))};
#endif
return QStringView(version).split(u' ', Qt::SkipEmptyParts)[1].toString();
return QStringView(version).split(u' ', Qt::SkipEmptyParts).at(1).toString();
}
QString Utils::Misc::zlibVersionString()

Loading…
Cancel
Save