Skip to content
Snippets Groups Projects
Commit 552fb313 authored by Steve McIntyre's avatar Steve McIntyre
Browse files

Fix an issue in an f2fs security fix which caused mount failures

Closes: #1021846. Thanks to программист некто for helping to debug the
problem!
parent 1fd7f8c9
No related branches found
No related tags found
No related merge requests found
grub2 (2.06-8) UNRELEASED; urgency=medium
[ Steve McIntyre ]
* Fix an issue in an f2fs security fix which caused mount
failures. Closes: #1021846. Thanks to программист некто for helping
to debug the problem!
-- Steve McIntyre <93sam@debian.org> Sun, 11 Dec 2022 12:08:44 +0000
grub2 (2.06-7) unstable; urgency=medium
[ Steve McIntyre ]
......
......@@ -34,7 +34,7 @@ index 8a9992ca9..63702214b 100644
- grub_uint32_t blkaddr = 0;
grub_uint16_t i;
+ if (n >= NAT_JOURNAL_ENTRIES)
+ if (n > NAT_JOURNAL_ENTRIES)
+ return grub_error (GRUB_ERR_BAD_FS,
+ "invalid number of nat journal entries");
+
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment