From 8083e2e024714c42d47d8ebd82e97b17527ac759 Mon Sep 17 00:00:00 2001 From: Vicente Date: Tue, 9 Oct 2012 00:55:17 +0200 Subject: bootm: close open files Signed-off-by: Vicente Signed-off-by: Sascha Hauer --- commands/bootm.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'commands/bootm.c') diff --git a/commands/bootm.c b/commands/bootm.c index 8e51695d94..20b49f0cd1 100644 --- a/commands/bootm.c +++ b/commands/bootm.c @@ -70,6 +70,7 @@ static int bootm_open_os_uimage(struct image_data *data) if (ret) { printf("Checking data crc failed with %s\n", strerror(-ret)); + uimage_close(data->os); return ret; } } @@ -79,6 +80,7 @@ static int bootm_open_os_uimage(struct image_data *data) if (data->os->header.ih_arch != IH_ARCH) { printf("Unsupported Architecture 0x%x\n", data->os->header.ih_arch); + uimage_close(data->os); return -EINVAL; } @@ -88,8 +90,10 @@ static int bootm_open_os_uimage(struct image_data *data) if (data->os_address != UIMAGE_INVALID_ADDRESS) { data->os_res = uimage_load_to_sdram(data->os, 0, data->os_address); - if (!data->os_res) + if (!data->os_res) { + uimage_close(data->os); return -ENOMEM; + } } return 0; -- cgit v1.2.3