diff options
| author | Tom Rini <[email protected]> | 2025-02-27 09:23:36 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-02-27 09:23:36 -0600 |
| commit | 87f00c3ba5993e40fdbe1fadcfe69191e4cacd33 (patch) | |
| tree | 0694716995f3541d7ab3257942db6b3e629c2e4d /tools | |
| parent | 05647bdf55f94decea8f2db467347a924e783861 (diff) | |
| parent | ce154a45a7e550b780e07b893a87d9e411a5b8b7 (diff) | |
Merge tag 'u-boot-imx-next-20250227' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into next
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/24876
- Convert imx6q-lxr and imxrt1050 to OF_UPSTREAM.
- Fix potential memory leak on ]imx/imx8/imx8m]image.
- Restrict DDR_SI_TEST to only Siemens Capricorn board.
- Fix CONFIG_BOOTCOUNT_ALTBOOTCMD on Data Modul and DH imx8m boards.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/imx8image.c | 1 | ||||
| -rw-r--r-- | tools/imx8mimage.c | 1 | ||||
| -rw-r--r-- | tools/imximage.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/tools/imx8image.c b/tools/imx8image.c index 15510d3e712..0135b190951 100644 --- a/tools/imx8image.c +++ b/tools/imx8image.c @@ -290,6 +290,7 @@ static uint32_t parse_cfg_file(image_t *param_stack, char *name) } } + free(line); fclose(fd); return 0; } diff --git a/tools/imx8mimage.c b/tools/imx8mimage.c index d60d293e649..0f24ba75c0f 100644 --- a/tools/imx8mimage.c +++ b/tools/imx8mimage.c @@ -206,6 +206,7 @@ static uint32_t parse_cfg_file(char *name) } } + free(line); fclose(fd); return 0; } diff --git a/tools/imximage.c b/tools/imximage.c index 467d9f27d2a..55231caf8f3 100644 --- a/tools/imximage.c +++ b/tools/imximage.c @@ -783,6 +783,7 @@ static uint32_t parse_cfg_file(struct imx_header *imxhdr, char *name) } (*set_dcd_rst)(imxhdr, dcd_len, name, lineno); + free(line); fclose(fd); /* Exit if there is no BOOT_FROM field specifying the flash_offset */ |
