Make change and version bump to r_aml_300801800 for mainline module file: adb/apex/apex_manifest.json

Change-Id: I67412c29ed3bd211cd34196b5685d8750c37de6c
This commit is contained in:
android-build-team Robot 2020-06-17 07:08:08 +00:00
commit 2a613052e0
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{
"name": "com.android.adbd",
"version": 300801700
"version": 300801800
}

View file

@ -331,7 +331,7 @@ static bool read_ext4_superblock(const std::string& blk_device, const FstabEntry
// try backup superblock, if main superblock is corrupted
for (unsigned int blocksize = EXT4_MIN_BLOCK_SIZE; blocksize <= EXT4_MAX_BLOCK_SIZE;
blocksize *= 2) {
unsigned int superblock = blocksize * 8;
uint64_t superblock = blocksize * 8;
if (blocksize == EXT4_MIN_BLOCK_SIZE) superblock++;
if (TEMP_FAILURE_RETRY(pread(fd, sb, sizeof(*sb), superblock * blocksize)) !=