mirror of https://github.com/RT-Thread/rt-thread
[libc error] 编译错误PATH_MAX 未定义,移除 mq 中的 PATH_MAX 判断 (#7550)
This commit is contained in:
parent
7f31d5cb8c
commit
662aa1b7e2
|
@ -138,7 +138,7 @@ mqd_t mq_open(const char *name, int oflag, ...)
|
||||||
/* lock posix mqueue list */
|
/* lock posix mqueue list */
|
||||||
rt_sem_take(&posix_mq_lock, RT_WAITING_FOREVER);
|
rt_sem_take(&posix_mq_lock, RT_WAITING_FOREVER);
|
||||||
int len = rt_strlen(name);
|
int len = rt_strlen(name);
|
||||||
if (len > PATH_MAX || len > RT_NAME_MAX)
|
if (len > RT_NAME_MAX)
|
||||||
{
|
{
|
||||||
rt_set_errno(ENAMETOOLONG);
|
rt_set_errno(ENAMETOOLONG);
|
||||||
goto __return;
|
goto __return;
|
||||||
|
|
Loading…
Reference in New Issue