mirror of
https://github.com/apache/nuttx.git
synced 2026-09-27 18:58:27 +08:00
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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user