aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/hdsenc.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-10-20 00:48:49 +0200
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-01-13 00:04:24 +0100
commit19fc283dbb53a5f7d6658fd4edcfa59b99369b58 (patch)
tree1c319b85f3cdc5dfce0805579cd49b8fae471eac /libavformat/hdsenc.c
parentb9b689550e7531b1a2cc893d2af623e37f266936 (diff)
downloadffmpeg-19fc283dbb53a5f7d6658fd4edcfa59b99369b58.tar.gz
lavf: replace rename() with ff_rename()
The new function wraps errno so that its value is correctly reported when other functions overwrite it (eg. in case of logging). CC: libav-stable@libav.org Bug-Id: CID 1135748 Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavformat/hdsenc.c')
-rw-r--r--libavformat/hdsenc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/hdsenc.c b/libavformat/hdsenc.c
index 6217c1f51f..3a0f36d8c2 100644
--- a/libavformat/hdsenc.c
+++ b/libavformat/hdsenc.c
@@ -204,8 +204,7 @@ static int write_manifest(AVFormatContext *s, int final)
avio_printf(out, "</manifest>\n");
avio_flush(out);
avio_close(out);
- rename(temp_filename, filename);
- return 0;
+ return ff_rename(temp_filename, filename);
}
static void update_size(AVIOContext *out, int64_t pos)
@@ -286,8 +285,7 @@ static int write_abst(AVFormatContext *s, OutputStream *os, int final)
update_size(out, afrt_pos);
update_size(out, 0);
avio_close(out);
- rename(temp_filename, filename);
- return 0;
+ return ff_rename(temp_filename, filename);
}
static int init_file(AVFormatContext *s, OutputStream *os, int64_t start_ts)
@@ -477,7 +475,9 @@ static int hds_flush(AVFormatContext *s, OutputStream *os, int final,
snprintf(target_filename, sizeof(target_filename),
"%s/stream%dSeg1-Frag%d", s->filename, index, os->fragment_index);
- rename(os->temp_filename, target_filename);
+ ret = ff_rename(os->temp_filename, target_filename);
+ if (ret < 0)
+ return ret;
add_fragment(os, target_filename, os->frag_start_ts, end_ts - os->frag_start_ts);
if (!final) {