Skip to content

Commit ba5c679

Browse files
authored
Merge pull request #47 from ClickHouse/fix-uninit-value-msan
Fix possible use-of-uninitizliaed-value
2 parents 8cdbf43 + c0f8671 commit ba5c679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/parquet/encoding.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2580,7 +2580,7 @@ class DeltaBitPackDecoder : public DecoderImpl, virtual public TypedDecoder<DTyp
25802580
T min_delta_;
25812581
uint32_t mini_block_idx_;
25822582
std::shared_ptr<ResizableBuffer> delta_bit_widths_;
2583-
int delta_bit_width_;
2583+
int delta_bit_width_ = 0;
25842584

25852585
T last_value_;
25862586
};

0 commit comments

Comments
 (0)