From b09e1b614949ea9cb426e2e7cf0d2bd65ed7d02d Mon Sep 17 00:00:00 2001 From: Gary Bisson Date: Mon, 11 May 2020 12:11:53 +0200 Subject: [PATCH] cmd: avb: free partition buffer upon verify completion Doing the same as the unittests for libavb [1]. Allows to run 'avb verify' multiple times which can be useful after a failure to be able to re-flash the partition and try again. [1] https://android.googlesource.com/platform/external/avb/+/refs/tags/android-9.0.0_r37/test/avb_slot_verify_unittest.cc#156 Signed-off-by: Gary Bisson Reviewed-by: Igor Opaniuk --- cmd/avb.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/avb.c b/cmd/avb.c index 398ad3ba97..88172a9ee6 100644 --- a/cmd/avb.c +++ b/cmd/avb.c @@ -316,6 +316,9 @@ int do_avb_verify_part(struct cmd_tbl *cmdtp, int flag, printf("Unknown error occurred\n"); } + if (out_data) + avb_slot_verify_data_free(out_data); + return res; }