mirror of
https://github.com/transmission/transmission
synced 2025-03-03 10:15:45 +00:00
For some reason self.fPieces.resize() won't work but _fPieces.resize() will (#3669)
This commit is contained in:
parent
76a7994eef
commit
846442af83
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ enum
|
|||
BOOL const first = std::empty(self.fPieces);
|
||||
if (first)
|
||||
{
|
||||
self.fPieces.resize(self.fNumPieces);
|
||||
_fPieces.resize(self.fNumPieces);
|
||||
}
|
||||
|
||||
auto pieces = std::vector<int8_t>{};
|
||||
|
|
Loading…
Reference in a new issue