[libc error] 编译错误PATH_MAX 未定义,移除 mq 中的 PATH_MAX 判断 (#7550)

This commit is contained in:
zhkag 2023-05-23 10:03:23 +08:00 committed by GitHub
parent 7f31d5cb8c
commit 662aa1b7e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ mqd_t mq_open(const char *name, int oflag, ...)
/* lock posix mqueue list */
rt_sem_take(&posix_mq_lock, RT_WAITING_FOREVER);
int len = rt_strlen(name);
if (len > PATH_MAX || len > RT_NAME_MAX)
if (len > RT_NAME_MAX)
{
rt_set_errno(ENAMETOOLONG);
goto __return;