OSDN Git Service

hdsenc: Check the init_file() return code
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 12 Dec 2013 20:04:24 +0000 (21:04 +0100)
committerMartin Storsjö <martin@martin.st>
Sat, 14 Dec 2013 15:48:46 +0000 (17:48 +0200)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/hdsenc.c

index c093293..6217c1f 100644 (file)
@@ -412,7 +412,9 @@ static int hds_write_header(AVFormatContext *s)
 
         snprintf(os->temp_filename, sizeof(os->temp_filename),
                  "%s/stream%d_temp", s->filename, i);
-        init_file(s, os, 0);
+        ret = init_file(s, os, 0);
+        if (ret < 0)
+            goto fail;
 
         if (!os->has_video && c->min_frag_duration <= 0) {
             av_log(s, AV_LOG_WARNING,