Browse Source

lavf/segment: abort in case of invalid segment format options

tags/n2.4
Stefano Sabatini 10 years ago
parent
commit
f51de9cac2
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavformat/segment.c

+ 4
- 1
libavformat/segment.c View File

@@ -662,8 +662,10 @@ static int seg_write_header(AVFormatContext *s)
if (av_dict_count(options)) {
av_log(s, AV_LOG_ERROR,
"Some of the provided format options in '%s' are not recognized\n", seg->format_options_str);
ret = AVERROR(EINVAL);
goto fail;
}
av_dict_free(&options);
if (ret < 0) {
avio_close(oc->pb);
goto fail;
@@ -681,6 +683,7 @@ static int seg_write_header(AVFormatContext *s)
}

fail:
av_dict_free(&options);
if (ret) {
if (seg->list)
avio_close(seg->list_pb);


Loading…
Cancel
Save