diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-07-15 11:16:53 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-07-22 09:14:05 +0200 |
commit | 8f3a3ce7307e39a030db3bf8d2e525b21e039ca2 (patch) | |
tree | df785a28eb2e8dfd7f30c55120da4e20be81e0d4 /libavfilter/vf_pad.c | |
parent | 1dc42050185d63c1de5d16146fbaee92640af187 (diff) | |
download | ffmpeg-8f3a3ce7307e39a030db3bf8d2e525b21e039ca2.tar.gz |
lavfi: check all ff_get_video_buffer() calls for errors.
Diffstat (limited to 'libavfilter/vf_pad.c')
-rw-r--r-- | libavfilter/vf_pad.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavfilter/vf_pad.c b/libavfilter/vf_pad.c index 262a416488..ed2e2e0891 100644 --- a/libavfilter/vf_pad.c +++ b/libavfilter/vf_pad.c @@ -262,6 +262,9 @@ static AVFilterBufferRef *get_video_buffer(AVFilterLink *inlink, int perms, int h + (pad->h - pad->in_h)); int plane; + if (!picref) + return NULL; + picref->video->w = w; picref->video->h = h; |