Oopenvela-robotfix compile error
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
fs: migrate to SPDX identifier Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> | 2 个月前 | |
mq_open:fix mq_name check https://man7.org/linux/man-pages/man7/mq_overview.7.html: Each message queue is identified by a name of the form /somename; that is, a null-terminated string of up to NAME_MAX (i.e., 255) characters consisting of an initial slash, followed by one or more characters, none of which are slashes. Signed-off-by: tengshuangshuang <tengshuangshuang@xiaomi.com> | 2 个月前 | |
fs: migrate to SPDX identifier Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> | 2 个月前 | |
fs: migrate to SPDX identifier Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> | 2 个月前 | |
mq_open:fix mq_name check https://man7.org/linux/man-pages/man7/mq_overview.7.html: Each message queue is identified by a name of the form /somename; that is, a null-terminated string of up to NAME_MAX (i.e., 255) characters consisting of an initial slash, followed by one or more characters, none of which are slashes. Signed-off-by: tengshuangshuang <tengshuangshuang@xiaomi.com> | 2 个月前 | |
fix compile error Signed-off-by: hujun5 <hujun5@xiaomi.com> | 2 个月前 | |
add limit for MAX_MQUEUE_PATH to satisfy POSIX requirement. A call to mq_open() when the length of a pathname component in name exceeds {NAME_MAX} while _POSIX_NO_TRUNC is in effect shall return -1 and set errno to ENAMETOOLONG. In nuttx/fs/mqueue/mq_open.c:185-190 ''' if (sizeof(CONFIG_FS_MQUEUE_VFS_PATH) + 1 + strlen(mq_name) >= MAX_MQUEUE_PATH) { ret = -ENAMETOOLONG; goto errout; } ''' Signed-off-by: tengshuangshuang <tengshuangshuang@xiaomi.com> | 2 个月前 |