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:
parent
9b99493e14
commit
afca1a819d
2 changed files with 5 additions and 5 deletions
|
@ -205,7 +205,7 @@ int exec_module(FAR struct binary_s *binp,
|
||||||
#if defined(CONFIG_ARCH_ADDRENV) && defined(CONFIG_BUILD_KERNEL)
|
#if defined(CONFIG_ARCH_ADDRENV) && defined(CONFIG_BUILD_KERNEL)
|
||||||
FAR struct arch_addrenv_s *addrenv = &binp->addrenv->addrenv;
|
FAR struct arch_addrenv_s *addrenv = &binp->addrenv->addrenv;
|
||||||
FAR void *vheap;
|
FAR void *vheap;
|
||||||
char name[CONFIG_PATH_MAX];
|
char name[PATH_MAX];
|
||||||
#endif
|
#endif
|
||||||
FAR void *stackaddr = NULL;
|
FAR void *stackaddr = NULL;
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
|
@ -260,7 +260,7 @@ int exec_module(FAR struct binary_s *binp,
|
||||||
|
|
||||||
if (argv == NULL)
|
if (argv == NULL)
|
||||||
{
|
{
|
||||||
strlcpy(name, filename, CONFIG_PATH_MAX);
|
strlcpy(name, filename, PATH_MAX);
|
||||||
filename = name;
|
filename = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
/* Location of the fdt data for this system. */
|
/* 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
|
* Public Functions
|
||||||
|
@ -399,7 +399,7 @@ FAR const char *fdt_get_node_label(FAR const void *fdt, int node)
|
||||||
int ret;
|
int ret;
|
||||||
const char *property_name;
|
const char *property_name;
|
||||||
const char *label_name;
|
const char *label_name;
|
||||||
char path_buffer[CONFIG_PATH_MAX] =
|
char path_buffer[PATH_MAX] =
|
||||||
{
|
{
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
@ -496,7 +496,7 @@ int fdt_node_index_from_label(FAR const char *node_label, int count)
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
label_length = strnlen(node_label, CONFIG_PATH_MAX);
|
label_length = strnlen(node_label, PATH_MAX);
|
||||||
|
|
||||||
if (count > label_length || count <= 0)
|
if (count > label_length || count <= 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue