tools: imx8mimage: Fix handle leak

The handle "fd" was created in imx8mimage.c:178 by calling
 the "fopen" function and is lost in imx8mimage.c:210.
 Should close the 'fd' file descriptor before exiting
 the parse_cfg_file(char *name) function.

Fixes: 6609c2663c ("tools: add i.MX8M image support")
Signed-off-by: Mikhail Ilin <ilin.mikhail.ol@gmail.com>
This commit is contained in:
Mikhail Ilin 2022-11-23 13:48:44 +03:00 committed by Stefano Babic
parent 507a70b144
commit 9017785acd

View file

@ -207,6 +207,7 @@ static uint32_t parse_cfg_file(char *name)
}
}
fclose(fd);
return 0;
}