mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
system/lzf: correct the open mode
Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
parent
419e6b012a
commit
fcd69d1cdf
1 changed files with 1 additions and 3 deletions
|
|
@ -311,7 +311,6 @@ short_read:
|
|||
|
||||
static int open_out(FAR const char *name)
|
||||
{
|
||||
int fd;
|
||||
int m = O_EXCL;
|
||||
|
||||
if (g_force)
|
||||
|
|
@ -319,8 +318,7 @@ static int open_out(FAR const char *name)
|
|||
m = 0;
|
||||
}
|
||||
|
||||
fd = open(name, O_CREAT | O_WRONLY | O_TRUNC | m, 600);
|
||||
return fd;
|
||||
return open(name, O_CREAT | O_WRONLY | O_TRUNC | m, 0600);
|
||||
}
|
||||
|
||||
static int compose_name(FAR const char *fname, FAR char *oname, int namelen)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue