mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat: Read errno before av_log() as the callback from av_log() might affect errno
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
af03ba9aa2
commit
e7513e1286
@ -50,12 +50,14 @@ static av_cold int libsmbc_connect(URLContext *h)
|
||||
|
||||
libsmbc->ctx = smbc_new_context();
|
||||
if (!libsmbc->ctx) {
|
||||
int ret = AVERROR(errno);
|
||||
av_log(h, AV_LOG_ERROR, "Cannot create context: %s.\n", strerror(errno));
|
||||
return AVERROR(errno);
|
||||
return ret;
|
||||
}
|
||||
if (!smbc_init_context(libsmbc->ctx)) {
|
||||
int ret = AVERROR(errno);
|
||||
av_log(h, AV_LOG_ERROR, "Cannot initialize context: %s.\n", strerror(errno));
|
||||
return AVERROR(errno);
|
||||
return ret;
|
||||
}
|
||||
smbc_set_context(libsmbc->ctx);
|
||||
|
||||
@ -68,8 +70,9 @@ static av_cold int libsmbc_connect(URLContext *h)
|
||||
smbc_setWorkgroup(libsmbc->ctx, libsmbc->workgroup);
|
||||
|
||||
if (smbc_init(NULL, 0) < 0) {
|
||||
int ret = AVERROR(errno);
|
||||
av_log(h, AV_LOG_ERROR, "Initialization failed: %s\n", strerror(errno));
|
||||
return AVERROR(errno);
|
||||
return ret;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -157,8 +160,9 @@ static int libsmbc_read(URLContext *h, unsigned char *buf, int size)
|
||||
int bytes_read;
|
||||
|
||||
if ((bytes_read = smbc_read(libsmbc->fd, buf, size)) < 0) {
|
||||
int ret = AVERROR(errno);
|
||||
av_log(h, AV_LOG_ERROR, "Read error: %s\n", strerror(errno));
|
||||
return AVERROR(errno);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return bytes_read;
|
||||
@ -170,8 +174,9 @@ static int libsmbc_write(URLContext *h, const unsigned char *buf, int size)
|
||||
int bytes_written;
|
||||
|
||||
if ((bytes_written = smbc_write(libsmbc->fd, buf, size)) < 0) {
|
||||
int ret = AVERROR(errno);
|
||||
av_log(h, AV_LOG_ERROR, "Write error: %s\n", strerror(errno));
|
||||
return AVERROR(errno);
|
||||
return ret;
|
||||
}
|
||||
|
||||
return bytes_written;
|
||||
|
@ -293,8 +293,8 @@ static int ism_write_header(AVFormatContext *s)
|
||||
AVOutputFormat *oformat;
|
||||
|
||||
if (mkdir(s->filename, 0777) == -1 && errno != EEXIST) {
|
||||
av_log(s, AV_LOG_ERROR, "mkdir failed\n");
|
||||
ret = AVERROR(errno);
|
||||
av_log(s, AV_LOG_ERROR, "mkdir failed\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user