mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
dfu: Fix memory leak in dfu_init_env_entities()
In case of error in dfu_init_env_entities(), env_bkp will leak. Fix it by providing single return path. Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
This commit is contained in:
parent
feaa7856f5
commit
87a8ca985b
1 changed files with 4 additions and 3 deletions
|
@ -56,7 +56,7 @@ int dfu_init_env_entities(char *interface, char *devstr)
|
|||
{
|
||||
const char *str_env;
|
||||
char *env_bkp;
|
||||
int ret;
|
||||
int ret = 0;
|
||||
|
||||
#ifdef CONFIG_SET_DFU_ALT_INFO
|
||||
set_dfu_alt_info(interface, devstr);
|
||||
|
@ -71,11 +71,12 @@ int dfu_init_env_entities(char *interface, char *devstr)
|
|||
ret = dfu_config_entities(env_bkp, interface, devstr);
|
||||
if (ret) {
|
||||
pr_err("DFU entities configuration failed!\n");
|
||||
return ret;
|
||||
goto done;
|
||||
}
|
||||
|
||||
done:
|
||||
free(env_bkp);
|
||||
return 0;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static unsigned char *dfu_buf;
|
||||
|
|
Loading…
Reference in a new issue