summaryrefslogtreecommitdiff
path: root/libsparse/sparse.cpp
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2019-05-02 12:54:09 -0700
committerStephen Hines <srhines@google.com>2019-05-02 12:54:09 -0700
commit45b11d9035b8a8c6289e31db52d0ed840985bd2a (patch)
treeaeb00b038d41bea65a10a6db699637e7ffcf1d01 /libsparse/sparse.cpp
parent6688eaf23f9126c2f100e7fe848ec5832247d2cd (diff)
Fix an unintialized return value.
Bug: http://b/131390872 Test: Built aosp_blueline successfully. Change-Id: Iea5255be280dfc089a95fc25a0f988e913c18679
Diffstat (limited to 'libsparse/sparse.cpp')
-rw-r--r--libsparse/sparse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsparse/sparse.cpp b/libsparse/sparse.cpp
index cb288c555..24c6379cd 100644
--- a/libsparse/sparse.cpp
+++ b/libsparse/sparse.cpp
@@ -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;