提交 7ac80551 编写于 作者: G Gerlando Falauto 提交者: Tom Rini

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: NStefano Babic <sbabic@denx.de>
Signed-off-by: NGerlando Falauto <gerlando.falauto@keymile.com>
Tested-by: NStefano Babic <sbabic@denx.de>
上级 961c437b
......@@ -215,6 +215,9 @@ int env_check_apply(const char *name, const char *oldval,
{
int console = -1;
/* Default value for NULL to protect string-manipulating functions */
newval = newval ? : "";
/* Check for console redirection */
if (strcmp(name, "stdin") == 0)
console = stdin;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册