[PATCH 4/4] e2fsck: initialize variable before first use in fast commit replay
From: Harshad Shirwadkar <hidden>
Date: 2021-02-19 21:04:35
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Harshad Shirwadkar <hidden>
Date: 2021-02-19 21:04:35
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Harshad Shirwadkar <redacted> Initialize ext2fs_ex variable in ext4_fc_replay_scan() before first use. Signed-off-by: Harshad Shirwadkar <redacted> --- e2fsck/journal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/e2fsck/journal.c b/e2fsck/journal.c
index a67ef745..8e7ba819 100644
--- a/e2fsck/journal.c
+++ b/e2fsck/journal.c@@ -289,7 +289,7 @@ static int ext4_fc_replay_scan(journal_t *j, struct buffer_head *bh, struct ext4_fc_tail *tail; __u8 *start, *end; struct ext4_fc_head *head; - struct ext2fs_extent ext2fs_ex; + struct ext2fs_extent ext2fs_ex = {0}; state = &ctx->fc_replay_state;
--
2.30.0.617.g56c4b15f3c-goog