Commit 4f9ce3c4 authored by Stefano Sabatini's avatar Stefano Sabatini

Add missing NULL checks in avfilter_ref_buffer().

Originally committed as revision 24808 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6fa5a91b
......@@ -48,9 +48,15 @@ const char *avfilter_license(void)
AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask)
{
AVFilterBufferRef *ret = av_malloc(sizeof(AVFilterBufferRef));
if (!ret)
return NULL;
*ret = *ref;
if (ref->type == AVMEDIA_TYPE_VIDEO) {
ret->video = av_malloc(sizeof(AVFilterBufferRefVideoProps));
if (!ret->video) {
av_free(ret);
return NULL;
}
*ret->video = *ref->video;
}
ret->perms &= pmask;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment