提交 ecd3d0ca 编写于 作者: E Ernesto Ramos 提交者: Greg Kroah-Hartman

staging:ti dspbridge: replace simple_strtoul by strict_strtoul

Replace simple_strtoul by strict_strtoul in atoi function.
Signed-off-by: NErnesto Ramos <ernesto@ti.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 b3c8aef0
......@@ -1012,6 +1012,8 @@ static s32 atoi(char *psz_buf)
{
char *pch = psz_buf;
s32 base = 0;
unsigned long res;
int ret_val;
while (isspace(*pch))
pch++;
......@@ -1023,7 +1025,9 @@ static s32 atoi(char *psz_buf)
base = 16;
}
return simple_strtoul(pch, NULL, base);
ret_val = strict_strtoul(pch, base, &res);
return ret_val ? : res;
}
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册