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

Commit 1912bda2 authored by David Anderson's avatar David Anderson Committed by android-build-merger
Browse files

Merge "libfiemap_writer: Fix bugs in vfat handling." am: 7f6d6db2

am: 22a01eed

Change-Id: Ice4f2b39fb97cbda876e2b136a00834952c22e0d
parents cff70e63 22a01eed
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -501,11 +501,12 @@ static bool ReadFibmap(int file_fd, const std::string& file_path,
        }

        if (!extents->empty() && block == last_block + 1) {
            extents->back().fe_length++;
            extents->back().fe_length += s.st_blksize;
        } else {
            extents->push_back(fiemap_extent{.fe_logical = block_number,
                                             .fe_physical = block,
                                             .fe_length = 1,
            extents->push_back(
                    fiemap_extent{.fe_logical = block_number,
                                  .fe_physical = static_cast<uint64_t>(block) * s.st_blksize,
                                  .fe_length = static_cast<uint64_t>(s.st_blksize),
                                  .fe_flags = 0});
        }
        last_block = block;