Skip to content

Commit 25a1f12

Browse files
airiumarvidn
authored andcommittedNov 17, 2018
Fix redundant bytes overflow
1 parent 95049cd commit 25a1f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎include/libtorrent/torrent.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ namespace libtorrent
14291429
// the number of bytes that has been
14301430
// downloaded that failed the hash-test
14311431
boost::uint32_t m_total_failed_bytes;
1432-
boost::uint32_t m_total_redundant_bytes;
1432+
boost::uint64_t m_total_redundant_bytes;
14331433

14341434
// the sequence number for this torrent, this is a
14351435
// monotonically increasing number for each added torrent

0 commit comments

Comments
 (0)
Please sign in to comment.