mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 12:08:20 +00:00
Properly initialize members of Reassembler. Fixes Coverity 1413348.
This commit is contained in:
parent
ce98666621
commit
e9ec2ee06d
1 changed files with 4 additions and 4 deletions
|
@ -307,11 +307,11 @@ protected:
|
|||
DataBlockList block_list;
|
||||
DataBlockList old_block_list;
|
||||
|
||||
uint64_t last_reassem_seq;
|
||||
uint64_t trim_seq; // how far we've trimmed
|
||||
uint32_t max_old_blocks;
|
||||
uint64_t last_reassem_seq = 0;
|
||||
uint64_t trim_seq = 0; // how far we've trimmed
|
||||
uint32_t max_old_blocks = 0;
|
||||
|
||||
ReassemblerType rtype;
|
||||
ReassemblerType rtype = REASSEM_UNKNOWN;
|
||||
|
||||
static uint64_t total_size;
|
||||
static uint64_t sizes[REASSEM_NUM];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue