aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahisa Kojima <masahisa.kojima@linaro.org>2023-06-29 11:13:51 +0900
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-07-09 03:53:08 +0200
commit0c95744bccea30c013cdd92c2c6afb6f96bd063a (patch)
tree9dca745d1cc49b019c2d1f85abdfc3577b98043d
parent9fd3f881c6edb3daf42277a24c4d1b8932a6df50 (diff)
downloadu-boot-0c95744bccea30c013cdd92c2c6afb6f96bd063a.zip
u-boot-0c95744bccea30c013cdd92c2c6afb6f96bd063a.tar.gz
u-boot-0c95744bccea30c013cdd92c2c6afb6f96bd063a.tar.bz2
cmd: efidebug: add missing efi_free_pool for dh subcommand
This adds the missing efi_free_pool call for dh subcommand. Fixes: a80146205d0a ("cmd: efidebug: add dh command") Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-rw-r--r--cmd/efidebug.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c
index 9622430..0be3af3 100644
--- a/cmd/efidebug.c
+++ b/cmd/efidebug.c
@@ -486,6 +486,7 @@ static int do_efi_show_handles(struct cmd_tbl *cmdtp, int flag,
if (guidcmp(guid[j], &efi_guid_device_path))
printf(" %pUs\n", guid[j]);
}
+ efi_free_pool(guid);
}
efi_free_pool(handles);