File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ TERMUX_PKG_DESCRIPTION="A BitTorrent protocol implementation"
33TERMUX_PKG_LICENSE=" GPL-2.0-or-later"
44TERMUX_PKG_MAINTAINER=" @termux"
55TERMUX_PKG_VERSION=" 26.04.0"
6+ TERMUX_PKG_REVISION=1
67TERMUX_PKG_SRCURL=" https://download.kde.org/stable/release-service/${TERMUX_PKG_VERSION} /src/libktorrent-${TERMUX_PKG_VERSION} .tar.xz"
78TERMUX_PKG_SHA256=4c7ef4b7416fcedf9d1ca8b759cae8ee0cd4254dca80e3978753399445dcf008
89TERMUX_PKG_AUTO_UPDATE=true
Original file line number Diff line number Diff line change 1+ --- a/src/peer/utmetadata.cpp 01:43:29.339142276 +0530
2+ +++ b/src/peer/utmetadata.cpp 2026-04-20 01:44:04.420161389 +0530
3+ @@ -34,7 +34,7 @@
4+ return;
5+ }
6+
7+ - const auto tmp = QByteArrayView{packet, size}.sliced(2);
8+ + const auto tmp = QByteArrayView{packet, static_cast<qsizetype>(size)}.sliced(2);
9+ try {
10+ BDecoder dec(tmp.data(), tmp.size(), false);
11+ const std::unique_ptr<BDictNode> dict = dec.decodeDict();
You can’t perform that action at this time.
0 commit comments