diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-10 20:26:28 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-10 20:27:07 +0100 |
commit | a74548521b2348aea7dc3a69ce814dc7b0d6aca8 (patch) | |
tree | 8220dca2221aa827b21e73d4abc72a572777629b | |
parent | e5a736261bafb1bc5a4c51d614be63e0632b2e96 (diff) | |
download | ffmpeg-a74548521b2348aea7dc3a69ce814dc7b0d6aca8.tar.gz |
swr: check that allocation of in/out_convert succeeded
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswresample/swresample.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 4c971dc8e0..badba7b7a2 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -369,6 +369,8 @@ av_assert0(s->out.ch_count); s->out_convert= swri_audio_convert_alloc(s->out_sample_fmt, s->int_sample_fmt, s->out.ch_count, NULL, 0); + if (!s->in_convert || !s->out_convert) + return AVERROR(ENOMEM); s->postin= s->in; s->preout= s->out; |