diff --git a/fastboot/device/flashing.cpp b/fastboot/device/flashing.cpp index 4fc3d1dfb..2347496b9 100644 --- a/fastboot/device/flashing.cpp +++ b/fastboot/device/flashing.cpp @@ -72,7 +72,7 @@ int WriteCallback(void* priv, const void* data, size_t len) { } int FlashSparseData(int fd, std::vector& downloaded_data) { - struct sparse_file* file = sparse_file_import_buf(downloaded_data.data(), true, true); + struct sparse_file* file = sparse_file_import_buf(downloaded_data.data(), true, false); if (!file) { return -ENOENT; }