1
0
Fork 0
forked from nuttx/nuttx-update

limits/path: replace CONFIG_PATH_MAX to PATH_MAX to ensure consistency

replace CONFIG_PATH_MAX to PATH_MAX to ensure consistency

Signed-off-by: chao an <anchao@lixiang.com>
This commit is contained in:
chao an 2024-12-10 12:27:08 +08:00 committed by Xiang Xiao
parent 9b99493e14
commit afca1a819d
2 changed files with 5 additions and 5 deletions

View file

@ -205,7 +205,7 @@ int exec_module(FAR struct binary_s *binp,
#if defined(CONFIG_ARCH_ADDRENV) && defined(CONFIG_BUILD_KERNEL)
FAR struct arch_addrenv_s *addrenv = &binp->addrenv->addrenv;
FAR void *vheap;
char name[CONFIG_PATH_MAX];
char name[PATH_MAX];
#endif
FAR void *stackaddr = NULL;
pid_t pid;
@ -260,7 +260,7 @@ int exec_module(FAR struct binary_s *binp,
if (argv == NULL)
{
strlcpy(name, filename, CONFIG_PATH_MAX);
strlcpy(name, filename, PATH_MAX);
filename = name;
}

View file

@ -39,7 +39,7 @@
/* Location of the fdt data for this system. */
static FAR const char *g_fdt_base = NULL;
static FAR const char *g_fdt_base;
/****************************************************************************
* Public Functions
@ -399,7 +399,7 @@ FAR const char *fdt_get_node_label(FAR const void *fdt, int node)
int ret;
const char *property_name;
const char *label_name;
char path_buffer[CONFIG_PATH_MAX] =
char path_buffer[PATH_MAX] =
{
0
};
@ -496,7 +496,7 @@ int fdt_node_index_from_label(FAR const char *node_label, int count)
return -ENOENT;
}
label_length = strnlen(node_label, CONFIG_PATH_MAX);
label_length = strnlen(node_label, PATH_MAX);
if (count > label_length || count <= 0)
{