mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
Merge pull request #12299 from Chocobo1/initialize
Initialize struct variables
This commit is contained in:
commit
82c23e67a4
1 changed files with 2 additions and 2 deletions
|
@ -64,10 +64,10 @@ namespace
|
||||||
|
|
||||||
struct DataFieldDescriptor
|
struct DataFieldDescriptor
|
||||||
{
|
{
|
||||||
DataType fieldType;
|
DataType fieldType {DataType::Unknown};
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
quint32 fieldSize;
|
quint32 fieldSize = 0;
|
||||||
quint32 offset; // Pointer
|
quint32 offset; // Pointer
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue