Correct uninitialized variable.
PiperOrigin-RevId: 312741918
This commit is contained in:
committed by
Victor Costan
parent
837f38b3e0
commit
f16eda3466
@@ -1538,7 +1538,8 @@ class SnappyScatteredWriter {
|
|||||||
full_size_(0),
|
full_size_(0),
|
||||||
op_base_(NULL),
|
op_base_(NULL),
|
||||||
op_ptr_(NULL),
|
op_ptr_(NULL),
|
||||||
op_limit_(NULL) {
|
op_limit_(NULL),
|
||||||
|
op_limit_min_slop_(NULL) {
|
||||||
}
|
}
|
||||||
char* GetOutputPtr() { return op_ptr_; }
|
char* GetOutputPtr() { return op_ptr_; }
|
||||||
void SetOutputPtr(char* op) { op_ptr_ = op; }
|
void SetOutputPtr(char* op) { op_ptr_ = op; }
|
||||||
|
|||||||
Reference in New Issue
Block a user