summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-09-12 23:23:25 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-12 23:23:25 +0200
commitf94a3575d76f1fd6df20f82ca28fff688d53cfbc (patch)
tree91f1a820b29f208741b16c6646f5878aeabb7b88
parentam aaf3f56c: block is bad if ioctl() returns nonzero (diff)
parentstop treating all-zero blocks as bad (diff)
downloadandroid_bootable_recovery-f94a3575d76f1fd6df20f82ca28fff688d53cfbc.tar
android_bootable_recovery-f94a3575d76f1fd6df20f82ca28fff688d53cfbc.tar.gz
android_bootable_recovery-f94a3575d76f1fd6df20f82ca28fff688d53cfbc.tar.bz2
android_bootable_recovery-f94a3575d76f1fd6df20f82ca28fff688d53cfbc.tar.lz
android_bootable_recovery-f94a3575d76f1fd6df20f82ca28fff688d53cfbc.tar.xz
android_bootable_recovery-f94a3575d76f1fd6df20f82ca28fff688d53cfbc.tar.zst
android_bootable_recovery-f94a3575d76f1fd6df20f82ca28fff688d53cfbc.zip
-rw-r--r--mtdutils/mtdutils.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/mtdutils/mtdutils.c b/mtdutils/mtdutils.c
index 3e354e334..c913a1945 100644
--- a/mtdutils/mtdutils.c
+++ b/mtdutils/mtdutils.c
@@ -308,14 +308,7 @@ static int read_block(const MtdPartition *partition, int fd, char *data)
"mtd: MEMGETBADBLOCK returned %d at 0x%08llx (errno=%d)\n",
mgbb, pos, errno);
} else {
- int i;
- for (i = 0; i < size; ++i) {
- if (data[i] != 0) {
- return 0; // Success!
- }
- }
- fprintf(stderr, "mtd: read all-zero block at 0x%08llx; skipping\n",
- pos);
+ return 0; // Success!
}
pos += partition->erase_size;