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-21 16:57:20 +08:00
committed by Xiang Xiao
parent dc577b66e4
commit ae3e1d8ec5
+1 -1
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 */