Skip to content

Commit

Permalink
Merge pull request #47 from ClickHouse/fix-uninit-value-msan
Browse files Browse the repository at this point in the history
Fix possible use-of-uninitizliaed-value
  • Loading branch information
Avogar authored Nov 3, 2023
2 parents 8cdbf43 + c0f8671 commit ba5c679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/encoding.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2580,7 +2580,7 @@ class DeltaBitPackDecoder : public DecoderImpl, virtual public TypedDecoder<DTyp
T min_delta_;
uint32_t mini_block_idx_;
std::shared_ptr<ResizableBuffer> delta_bit_widths_;
int delta_bit_width_;
int delta_bit_width_ = 0;

T last_value_;
};
Expand Down

0 comments on commit ba5c679

Please sign in to comment.