Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0cea25d authored by Hridya Valsaraju's avatar Hridya Valsaraju Committed by android-build-merger
Browse files

Merge "Do not calculate CRC for sparse images during fastboot flash"

am: a605668e

Change-Id: Ib6c77991c908421bd2a38afe12012ac4e2fc059c
parents e69d00e8 a605668e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ int WriteCallback(void* priv, const void* data, size_t len) {
}

int FlashSparseData(int fd, std::vector<char>& 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;
    }