mirror of https://git.ffmpeg.org/ffmpeg.git
swscale/slice: Check slice for allocation failure
Fixes: null pointer dereference Fixes: alloc_slice.mp4 Found-by: Rafael Dutra <rafael.dutra@cispa.de> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
40ce7aec09
commit
997f9cfc12
|
@ -288,7 +288,8 @@ int ff_init_filters(SwsContext * c)
|
|||
if (!c->desc)
|
||||
return AVERROR(ENOMEM);
|
||||
c->slice = av_mallocz_array(sizeof(SwsSlice), c->numSlice);
|
||||
|
||||
if (!c->slice)
|
||||
goto cleanup;
|
||||
|
||||
res = alloc_slice(&c->slice[0], c->srcFormat, c->srcH, c->chrSrcH, c->chrSrcHSubSample, c->chrSrcVSubSample, 0);
|
||||
if (res < 0) goto cleanup;
|
||||
|
|
Loading…
Reference in New Issue