Skip to content

Commit

Permalink
grub2: rebase patches
Browse files Browse the repository at this point in the history
Patch 300-CVE-2015-8370.patch was added without proper rebasing on the
version used by OpenWrt, make it apply and refresh the patch to fix
compilation.

Fixes: 7e73e91 ("grub2: Fix CVE-2015-8370")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 9ffbe84)
  • Loading branch information
jow- committed Aug 30, 2018
1 parent d3e325d commit 2252731
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions package/boot/grub2/patches/300-CVE-2015-8370.patch
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ Signed-off-by: Ismael Ripoll-Ripoll <iripoll@disca.upv.es>
grub-core/normal/auth.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/grub-core/lib/crypto.c b/grub-core/lib/crypto.c
index ca334d5a40e..e6c78d16d39 100644
--- a/grub-core/lib/crypto.c
+++ b/grub-core/lib/crypto.c
@@ -468,7 +468,7 @@ grub_password_get (char buf[], unsigned buf_size)
@@ -468,7 +468,7 @@ grub_password_get (char buf[], unsigned
break;
}

Expand All @@ -29,16 +27,14 @@ index ca334d5a40e..e6c78d16d39 100644
{
if (cur_len)
cur_len--;
diff --git a/grub-core/normal/auth.c b/grub-core/normal/auth.c
index 6be678c0de1..c35ce972473 100644
--- a/grub-core/normal/auth.c
+++ b/grub-core/normal/auth.c
@@ -172,7 +172,7 @@ grub_username_get (char buf[], unsigned buf_size)
@@ -172,7 +172,7 @@ grub_username_get (char buf[], unsigned
break;
}

- if (key == GRUB_TERM_BACKSPACE)
+ if (key == GRUB_TERM_BACKSPACE && cur_len)
- if (key == '\b')
+ if (key == '\b' && cur_len)
{
if (cur_len)
{

0 comments on commit 2252731

Please sign in to comment.