libsnapshot: Fix uninitialized variables
We fix two separate instances of classes not initializing members in their constructors. Test: TreeHugger Change-Id: If1b7a7625572c9b005f9b8331b282ed11ceb6e97
This commit is contained in:
parent
c0d11aa73a
commit
8ad3957d76
1 changed files with 2 additions and 2 deletions
|
@ -252,7 +252,7 @@ static uint64_t SizeOfAllExtents(const T& extents) {
|
|||
|
||||
class PuffInputStream final : public puffin::StreamInterface {
|
||||
public:
|
||||
PuffInputStream(uint8_t* buffer, size_t length) : buffer_(buffer), length_(length) {}
|
||||
PuffInputStream(uint8_t* buffer, size_t length) : buffer_(buffer), length_(length), pos_(0) {}
|
||||
|
||||
bool GetSize(uint64_t* size) const override {
|
||||
*size = length_;
|
||||
|
@ -472,7 +472,7 @@ template <typename ContainerType>
|
|||
class ExtentIter final {
|
||||
public:
|
||||
ExtentIter(const ContainerType& container)
|
||||
: iter_(container.cbegin()), end_(container.cend()) {}
|
||||
: iter_(container.cbegin()), end_(container.cend()), dst_index_(0) {}
|
||||
|
||||
bool GetNext(uint64_t* block) {
|
||||
while (iter_ != end_) {
|
||||
|
|
Loading…
Reference in a new issue