summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/efivar/efivar/0001-Fix-invalid-free-in-main.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/efivar/efivar/0001-Fix-invalid-free-in-main.patch')
-rw-r--r--meta/recipes-bsp/efivar/efivar/0001-Fix-invalid-free-in-main.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-bsp/efivar/efivar/0001-Fix-invalid-free-in-main.patch b/meta/recipes-bsp/efivar/efivar/0001-Fix-invalid-free-in-main.patch
new file mode 100644
index 0000000000..7e63df578e
--- /dev/null
+++ b/meta/recipes-bsp/efivar/efivar/0001-Fix-invalid-free-in-main.patch
@@ -0,0 +1,30 @@
1From 085f027e9e9f1478f68ddda705f83b244ee3bd88 Mon Sep 17 00:00:00 2001
2From: Robbie Harwood <rharwood@redhat.com>
3Date: Mon, 18 Apr 2022 13:08:18 -0400
4Subject: [PATCH] Fix invalid free in main()
5
6data is allocated by mmap() in prepare_data().
7
8Resolves: #173
9Signed-off-by: Robbie Harwood <rharwood@redhat.com>
10Upstream-Status: Backport
11Link: https://github.com/rhboot/efivar/commit/6be2cb1c0139ac177e754b0767abf1ca1533847f
12Signed-off-by: Grygorii Tertychnyi <grygorii.tertychnyi@leica-geosystems.com>
13
14---
15 src/efivar.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/src/efivar.c b/src/efivar.c
19index 5cd1eb2bc73c..09f85edd0a38 100644
20--- a/src/efivar.c
21+++ b/src/efivar.c
22@@ -633,7 +633,7 @@ int main(int argc, char *argv[])
23 if (sz < 0)
24 err(1, "Could not import data from \"%s\"", infile);
25
26- free(data);
27+ munmap(data, data_size);
28 data = NULL;
29 data_size = 0;
30