From 45b11d9035b8a8c6289e31db52d0ed840985bd2a Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Thu, 2 May 2019 12:54:09 -0700 Subject: Fix an unintialized return value. Bug: http://b/131390872 Test: Built aosp_blueline successfully. Change-Id: Iea5255be280dfc089a95fc25a0f988e913c18679 --- libsparse/sparse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libsparse/sparse.cpp') 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; -- cgit v1.2.3