summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Lindeberg <christian.lindeberg@sonyericsson.com>2011-01-19 12:22:41 +0100
committerJohan Redestig <johan.redestig@sonyericsson.com>2011-01-19 12:22:41 +0100
commit862c83bb3121de3e3fd4a9c7ebdb8ae627f8d311 (patch)
tree54152bda82eab71117718b2228d5b027654b5067
parentam 5d6309e7: fix comparison of ECC stats before and after mtd reads (diff)
downloadandroid_bootable_recovery-862c83bb3121de3e3fd4a9c7ebdb8ae627f8d311.tar
android_bootable_recovery-862c83bb3121de3e3fd4a9c7ebdb8ae627f8d311.tar.gz
android_bootable_recovery-862c83bb3121de3e3fd4a9c7ebdb8ae627f8d311.tar.bz2
android_bootable_recovery-862c83bb3121de3e3fd4a9c7ebdb8ae627f8d311.tar.lz
android_bootable_recovery-862c83bb3121de3e3fd4a9c7ebdb8ae627f8d311.tar.xz
android_bootable_recovery-862c83bb3121de3e3fd4a9c7ebdb8ae627f8d311.tar.zst
android_bootable_recovery-862c83bb3121de3e3fd4a9c7ebdb8ae627f8d311.zip
-rw-r--r--mtdutils/mtdutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mtdutils/mtdutils.c b/mtdutils/mtdutils.c
index 198f4989d..e4d2a6064 100644
--- a/mtdutils/mtdutils.c
+++ b/mtdutils/mtdutils.c
@@ -269,8 +269,8 @@ MtdReadContext *mtd_read_partition(const MtdPartition *partition)
sprintf(mtddevname, "/dev/mtd/mtd%d", partition->device_index);
ctx->fd = open(mtddevname, O_RDONLY);
if (ctx->fd < 0) {
- free(ctx);
free(ctx->buffer);
+ free(ctx);
return NULL;
}