Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
e8e13358
Commit
e8e13358
authored
Oct 16, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
av_tempfile: change mode for fallback to 0600 to match mkstemp()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
74dbb538
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
file.c
libavutil/file.c
+1
-1
No files found.
libavutil/file.c
View file @
e8e13358
...
@@ -156,7 +156,7 @@ int av_tempfile(const char *prefix, char **filename, int log_offset, void *log_c
...
@@ -156,7 +156,7 @@ int av_tempfile(const char *prefix, char **filename, int log_offset, void *log_c
# ifndef O_EXCL
# ifndef O_EXCL
# define O_EXCL 0
# define O_EXCL 0
# endif
# endif
fd
=
open
(
*
filename
,
O_RDWR
|
O_BINARY
|
O_CREAT
|
O_EXCL
,
0
444
);
fd
=
open
(
*
filename
,
O_RDWR
|
O_BINARY
|
O_CREAT
|
O_EXCL
,
0
600
);
#else
#else
snprintf
(
*
filename
,
len
,
"/tmp/%sXXXXXX"
,
prefix
);
snprintf
(
*
filename
,
len
,
"/tmp/%sXXXXXX"
,
prefix
);
fd
=
mkstemp
(
*
filename
);
fd
=
mkstemp
(
*
filename
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment