From 33abdb98367592d6074639d6b076076d92319f82 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Sat, 9 Jan 2021 02:09:44 +0100 Subject: tools: efivar.py should check GUID when deleting When deleting a variable we must check that the GUID provided by the user matches the GUID of the variable. Signed-off-by: Heinrich Schuchardt Reviewed-by: Paulo Alcantara (SUSE) --- tools/efivar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/efivar.py b/tools/efivar.py index a02b09d..29eb90a 100755 --- a/tools/efivar.py +++ b/tools/efivar.py @@ -149,7 +149,7 @@ class EfiVariableStore: offs = 0 while offs < len(self.ents): var, loffs = self._next_var(offs) - if var.name == name and str(var.guid): + if var.name == name and str(var.guid) == guid: if var.attrs != attrs: print("err: attributes don't match") exit(1) -- cgit v1.1