Skip to content
Snippets Groups Projects
Commit ddc6a9de authored by xypron.glpk@gmx.de's avatar xypron.glpk@gmx.de Committed by Tom Rini
Browse files

tools/env: avoid memory leak in fw_setenv


If realloc fails we should release the old buffer.

Signed-off-by: default avatarHeinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 1ecd2a2f
No related branches found
No related tags found
No related merge requests found
...@@ -473,6 +473,7 @@ int fw_setenv(int argc, char *argv[], struct env_opts *opts) ...@@ -473,6 +473,7 @@ int fw_setenv(int argc, char *argv[], struct env_opts *opts)
int i; int i;
size_t len; size_t len;
char *name, **valv; char *name, **valv;
char *oldval;
char *value = NULL; char *value = NULL;
int valc; int valc;
int ret; int ret;
...@@ -507,11 +508,13 @@ int fw_setenv(int argc, char *argv[], struct env_opts *opts) ...@@ -507,11 +508,13 @@ int fw_setenv(int argc, char *argv[], struct env_opts *opts)
if (value) if (value)
value[len - 1] = ' '; value[len - 1] = ' ';
oldval = value;
value = realloc(value, len + val_len + 1); value = realloc(value, len + val_len + 1);
if (!value) { if (!value) {
fprintf(stderr, fprintf(stderr,
"Cannot malloc %zu bytes: %s\n", "Cannot malloc %zu bytes: %s\n",
len, strerror(errno)); len, strerror(errno));
free(oldval);
return -1; return -1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment