1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 18:04:32 +00:00

Initialize stat indices to -1

When the index is initialized it will be set to a number >= 0, so we use
-1 to denote its uninitialized status.
This commit is contained in:
Chocobo1 2020-12-24 11:30:48 +08:00
parent 02e85913da
commit 0ebd864db9
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -166,43 +166,43 @@ namespace BitTorrent
{ {
struct struct
{ {
int hasIncomingConnections = 0; int hasIncomingConnections = -1;
int sentPayloadBytes = 0; int sentPayloadBytes = -1;
int recvPayloadBytes = 0; int recvPayloadBytes = -1;
int sentBytes = 0; int sentBytes = -1;
int recvBytes = 0; int recvBytes = -1;
int sentIPOverheadBytes = 0; int sentIPOverheadBytes = -1;
int recvIPOverheadBytes = 0; int recvIPOverheadBytes = -1;
int sentTrackerBytes = 0; int sentTrackerBytes = -1;
int recvTrackerBytes = 0; int recvTrackerBytes = -1;
int recvRedundantBytes = 0; int recvRedundantBytes = -1;
int recvFailedBytes = 0; int recvFailedBytes = -1;
} net; } net;
struct struct
{ {
int numPeersConnected = 0; int numPeersConnected = -1;
int numPeersUpDisk = 0; int numPeersUpDisk = -1;
int numPeersDownDisk = 0; int numPeersDownDisk = -1;
} peer; } peer;
struct struct
{ {
int dhtBytesIn = 0; int dhtBytesIn = -1;
int dhtBytesOut = 0; int dhtBytesOut = -1;
int dhtNodes = 0; int dhtNodes = -1;
} dht; } dht;
struct struct
{ {
int diskBlocksInUse = 0; int diskBlocksInUse = -1;
int numBlocksRead = 0; int numBlocksRead = -1;
int numBlocksCacheHits = 0; int numBlocksCacheHits = -1;
int writeJobs = 0; int writeJobs = -1;
int readJobs = 0; int readJobs = -1;
int hashJobs = 0; int hashJobs = -1;
int queuedDiskJobs = 0; int queuedDiskJobs = -1;
int diskJobTime = 0; int diskJobTime = -1;
} disk; } disk;
}; };