summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/grub/files/0009-gnulib-regcomp-Fix-uninitialized-token-structure.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/grub/files/0009-gnulib-regcomp-Fix-uninitialized-token-structure.patch')
-rw-r--r--meta/recipes-bsp/grub/files/0009-gnulib-regcomp-Fix-uninitialized-token-structure.patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-bsp/grub/files/0009-gnulib-regcomp-Fix-uninitialized-token-structure.patch b/meta/recipes-bsp/grub/files/0009-gnulib-regcomp-Fix-uninitialized-token-structure.patch
new file mode 100644
index 0000000000..b6e3c7edbe
--- /dev/null
+++ b/meta/recipes-bsp/grub/files/0009-gnulib-regcomp-Fix-uninitialized-token-structure.patch
@@ -0,0 +1,53 @@
1From 2af8df02cca7fd4b584575eac304cd03fa23f5cc Mon Sep 17 00:00:00 2001
2From: Darren Kenny <darren.kenny@oracle.com>
3Date: Thu, 22 Oct 2020 13:54:06 +0000
4Subject: [PATCH] gnulib/regcomp: Fix uninitialized token structure
5
6The code is assuming that the value of br_token.constraint was
7initialized to zero when it wasn't.
8
9While some compilers will ensure that, not all do, so it is better to
10fix this explicitly than leave it to chance.
11
12Fixes: CID 73749
13
14Signed-off-by: Darren Kenny <darren.kenny@oracle.com>
15Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
16
17Upstream-Status: Backport [https://git.savannah.gnu.org/cgit/grub.git/commit/?id=75c3d3cec4f408848f575d6d5e30a95bd6313db0]
18Signed-off-by: Marta Rybczynska <marta.rybczynska@huawei.com>
19---
20 conf/Makefile.extra-dist | 1 +
21 .../lib/gnulib-patches/fix-uninit-structure.patch | 11 +++++++++++
22 2 files changed, 12 insertions(+)
23 create mode 100644 grub-core/lib/gnulib-patches/fix-uninit-structure.patch
24
25diff --git a/conf/Makefile.extra-dist b/conf/Makefile.extra-dist
26index 9b01152..9e55458 100644
27--- a/conf/Makefile.extra-dist
28+++ b/conf/Makefile.extra-dist
29@@ -29,6 +29,7 @@ EXTRA_DIST += grub-core/genemuinit.sh
30 EXTRA_DIST += grub-core/genemuinitheader.sh
31
32 EXTRA_DIST += grub-core/lib/gnulib-patches/fix-null-deref.patch
33+EXTRA_DIST += grub-core/lib/gnulib-patches/fix-uninit-structure.patch
34 EXTRA_DIST += grub-core/lib/gnulib-patches/fix-unused-value.patch
35 EXTRA_DIST += grub-core/lib/gnulib-patches/fix-width.patch
36 EXTRA_DIST += grub-core/lib/gnulib-patches/no-abort.patch
37diff --git a/grub-core/lib/gnulib-patches/fix-uninit-structure.patch b/grub-core/lib/gnulib-patches/fix-uninit-structure.patch
38new file mode 100644
39index 0000000..7b4d9f6
40--- /dev/null
41+++ b/grub-core/lib/gnulib-patches/fix-uninit-structure.patch
42@@ -0,0 +1,11 @@
43+--- a/lib/regcomp.c 2020-10-22 13:49:06.770168928 +0000
44++++ b/lib/regcomp.c 2020-10-22 13:50:37.026528298 +0000
45+@@ -3662,7 +3662,7 @@
46+ Idx alloc = 0;
47+ #endif /* not RE_ENABLE_I18N */
48+ reg_errcode_t ret;
49+- re_token_t br_token;
50++ re_token_t br_token = {0};
51+ bin_tree_t *tree;
52+
53+ sbcset = (re_bitset_ptr_t) calloc (sizeof (bitset_t), 1);