Commit 482aabd5 authored by Michael Niedermayer's avatar Michael Niedermayer

av_tempfile: fix error codes

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4105335c
...@@ -146,7 +146,7 @@ int av_tempfile(const char *prefix, char **filename) { ...@@ -146,7 +146,7 @@ int av_tempfile(const char *prefix, char **filename) {
/* -----common section-----*/ /* -----common section-----*/
if (*filename == NULL) { if (*filename == NULL) {
av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n"); av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot allocate file name\n");
return -1; return AVERROR(ENOMEM);
} }
#if !HAVE_MKSTEMP #if !HAVE_MKSTEMP
# ifndef O_BINARY # ifndef O_BINARY
...@@ -166,8 +166,9 @@ int av_tempfile(const char *prefix, char **filename) { ...@@ -166,8 +166,9 @@ int av_tempfile(const char *prefix, char **filename) {
#endif #endif
/* -----common section-----*/ /* -----common section-----*/
if (fd < 0) { if (fd < 0) {
int err = AVERROR(errno);
av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename); av_log(NULL, AV_LOG_ERROR, "ff_tempfile: Cannot open temporary file %s\n", *filename);
return -1; return err;
} }
return fd; /* success */ return fd; /* success */
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment