mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
av_tempfile: fix error codes
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4105335c98
commit
482aabd59a
@ -146,7 +146,7 @@ int av_tempfile(const char *prefix, char **filename) {
|
||||
/* -----common section-----*/
|
||||
if (*filename == NULL) {
|
||||
av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n");
|
||||
return -1;
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
#if !HAVE_MKSTEMP
|
||||
# ifndef O_BINARY
|
||||
@ -166,8 +166,9 @@ int av_tempfile(const char *prefix, char **filename) {
|
||||
#endif
|
||||
/* -----common section-----*/
|
||||
if (fd < 0) {
|
||||
int err = AVERROR(errno);
|
||||
av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename);
|
||||
return -1;
|
||||
return err;
|
||||
}
|
||||
return fd; /* success */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user