From: Thierry Reding Date: Mon, 20 May 2019 16:05:04 +0000 (+0200) Subject: fdtdec: test: Fix memory leak X-Git-Tag: v2019.10-rc1~32^2~12 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=848e94d0ba7296d81e3c00b01bad1c13741497fb;p=oweals%2Fu-boot.git fdtdec: test: Fix memory leak Free the memory allocated to store the test FDT upon test completion to avoid leaking the memory. We don't bother cleaning up on test failure since the code is broken in that case and should be fixed, in which case the leak would also go away. Reported-by: Tom Rini Suggested-by: Heinrich Schuchardt Signed-off-by: Thierry Reding Reviewed-by: Simon Glass --- diff --git a/lib/fdtdec_test.c b/lib/fdtdec_test.c index 1f4f270540..e8bfd1fb1e 100644 --- a/lib/fdtdec_test.c +++ b/lib/fdtdec_test.c @@ -138,6 +138,7 @@ static int run_test(const char *aliases, const char *nodes, const char *expect) } printf("pass\n"); + free(blob); return 0; } @@ -292,6 +293,7 @@ static int check_carveout(void) CHECKVAL(make_fdt_carveout(fdt, FDT_SIZE, 2, 2), 0); CHECKOK(check_fdt_carveout(fdt, 2, 2)); + free(fdt); return 0; }