mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 14:14:24 +08:00
bcachefs: Fix missing error check in journal_entry_btree_keys_validate()
Closes: https://syzkaller.appspot.com/bug?extid=8996d8f176cf946ef641 Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
f49d2c9835
commit
0f6f8f7693
@ -415,6 +415,8 @@ static int journal_entry_btree_keys_validate(struct bch_fs *c,
|
||||
flags|BCH_VALIDATE_journal);
|
||||
if (ret == FSCK_DELETED_KEY)
|
||||
continue;
|
||||
else if (ret)
|
||||
return ret;
|
||||
|
||||
k = bkey_next(k);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user