mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-02 00:53:29 +08:00
env: fix crash using default -f -a
env default -a -f calls env_check_apply on all existing environment variables with a NULL value for "newval" as a way of cleaning up. This causes string manipulation functions to crash on most architectures. So replace a NULL argument with an empty string. Reported-By: Stefano Babic <sbabic@denx.de> Signed-off-by: Gerlando Falauto <gerlando.falauto@keymile.com> Tested-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
961c437b6c
commit
7ac80551c4
@ -215,6 +215,9 @@ int env_check_apply(const char *name, const char *oldval,
|
|||||||
{
|
{
|
||||||
int console = -1;
|
int console = -1;
|
||||||
|
|
||||||
|
/* Default value for NULL to protect string-manipulating functions */
|
||||||
|
newval = newval ? : "";
|
||||||
|
|
||||||
/* Check for console redirection */
|
/* Check for console redirection */
|
||||||
if (strcmp(name, "stdin") == 0)
|
if (strcmp(name, "stdin") == 0)
|
||||||
console = stdin;
|
console = stdin;
|
||||||
|
Loading…
Reference in New Issue
Block a user