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
|
# ifndef O_BINARY
|
||||||
# define O_BINARY 0
|
# define O_BINARY 0
|
||||||
# endif
|
# 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
|
#else
|
||||||
snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
|
snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
|
||||||
fd = mkstemp(*filename);
|
fd = mkstemp(*filename);
|
||||||
|
Loading…
Reference in New Issue
Block a user