mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
av_tempfile: use O_EXCL
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
797c2ef970
commit
4105335c98
@ -152,7 +152,10 @@ int av_tempfile(const char *prefix, char **filename) {
|
||||
# ifndef O_BINARY
|
||||
# define O_BINARY 0
|
||||
# endif
|
||||
fd = open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
|
||||
# ifndef O_EXCL
|
||||
# define O_EXCL 0
|
||||
# endif
|
||||
fd = open(*filename, O_RDWR | O_BINARY | O_CREAT | O_EXCL, 0444);
|
||||
#else
|
||||
snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
|
||||
fd = mkstemp(*filename);
|
||||
|
Loading…
Reference in New Issue
Block a user