fsck.f2fs: add a missing 'fixed' during chk_dentries()

One of the cases would update the dentries but not set
fixed=1 causing the update to not be written out.

Change-Id: I111d599f93f7d5306dacd7d62da946fdb5c262ee
Signed-off-by: JP Abgrall <jpa@google.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
JP Abgrall 2014-11-13 15:20:05 -08:00 committed by Jaegeuk Kim
parent 8f521d9172
commit e7f175ad77

View File

@ -737,6 +737,7 @@ static int __chk_dentries(struct f2fs_sb_info *sbi, u32 *child_cnt,
dentry[i].file_type);
i += slots;
free(name);
fixed = 1;
continue;
}