mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
smoothstreamingenc: check return value of mkdir()
Fixes CID732188 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b399816d9c
commit
a3886ea3c5
@ -287,7 +287,11 @@ static int ism_write_header(AVFormatContext *s)
|
|||||||
int ret = 0, i;
|
int ret = 0, i;
|
||||||
AVOutputFormat *oformat;
|
AVOutputFormat *oformat;
|
||||||
|
|
||||||
mkdir(s->filename, 0777);
|
if (mkdir(s->filename, 0777) < 0) {
|
||||||
|
av_log(s, AV_LOG_ERROR, "mkdir failed\n");
|
||||||
|
ret = AVERROR(errno);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
oformat = av_guess_format("ismv", NULL, NULL);
|
oformat = av_guess_format("ismv", NULL, NULL);
|
||||||
if (!oformat) {
|
if (!oformat) {
|
||||||
@ -314,7 +318,11 @@ static int ism_write_header(AVFormatContext *s)
|
|||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
snprintf(os->dirname, sizeof(os->dirname), "%s/QualityLevels(%d)", s->filename, s->streams[i]->codec->bit_rate);
|
snprintf(os->dirname, sizeof(os->dirname), "%s/QualityLevels(%d)", s->filename, s->streams[i]->codec->bit_rate);
|
||||||
mkdir(os->dirname, 0777);
|
if (mkdir(os->dirname, 0777) < 0) {
|
||||||
|
ret = AVERROR(errno);
|
||||||
|
av_log(s, AV_LOG_ERROR, "mkdir failed\n");
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
ctx = avformat_alloc_context();
|
ctx = avformat_alloc_context();
|
||||||
if (!ctx) {
|
if (!ctx) {
|
||||||
|
Loading…
Reference in New Issue
Block a user