setsockopt: Change return errno to EFAULT when value is NULL

behavior alignment to Linux for some testsuite

Signed-off-by: zhanghongyu <zhanghongyu@xiaomi.com>
This commit is contained in:
zhanghongyu 2022-10-19 23:15:03 +08:00 committed by Xiang Xiao
parent dc577b66e4
commit ae3e1d8ec5
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ static int psock_socketlevel_option(FAR struct socket *psock, int option,
if (!value)
{
return -EINVAL;
return -EFAULT;
}
/* Process the options always handled locally */