commit | cad1fa19316fc80cf2bd0d90202b19bdaa079555 | [log] [tgz] |
---|---|---|
author | Stephen Hines <srhines@google.com> | Thu May 02 12:54:09 2019 -0700 |
committer | Stephen Hines <srhines@google.com> | Thu May 02 12:54:09 2019 -0700 |
tree | aeb00b038d41bea65a10a6db699637e7ffcf1d01 | |
parent | 83a6d908b9724eeebd1d932370ec4d4e28f23aa2 [diff] |
Fix an unintialized return value. Bug: http://b/131390872 Test: Built aosp_blueline successfully. Change-Id: Iea5255be280dfc089a95fc25a0f988e913c18679
diff --git a/libsparse/sparse.cpp b/libsparse/sparse.cpp index cb288c5..24c6379 100644 --- a/libsparse/sparse.cpp +++ b/libsparse/sparse.cpp
@@ -188,7 +188,7 @@ 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;