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

(cherry picked from commit ba5c679)
  • Loading branch information
Avogar authored and nikitamikhaylov committed Oct 15, 2024
1 parent 39e53db commit 45ea0d6
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 @@ -2721,7 +2721,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 45ea0d6

Please sign in to comment.