mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 17:03:47 -04:00
staging:ti dspbridge: replace simple_strtoul by strict_strtoul
Replace simple_strtoul by strict_strtoul in atoi function. Signed-off-by: Ernesto Ramos <ernesto@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b3c8aef0a2
commit
ecd3d0ca40
@@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user