Merge "Fix an unintialized return value."

am: f35183daa6

Change-Id: I8673b76740757fa5c95bd5ba87e85b4276be432e
This commit is contained in:
Stephen Hines 2019-05-02 17:42:04 -07:00 committed by android-build-merger
commit 9efd5366ca

View file

@ -188,7 +188,7 @@ int sparse_file_foreach_chunk(struct sparse_file* s, bool sparse, bool crc,
int (*write)(void* priv, const void* data, size_t len,
unsigned int block, unsigned int nr_blocks),
void* priv) {
int ret;
int ret = 0;
int chunks;
struct chunk_data chk;
struct output_file* out;