You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Fix possible segfault
Commited in SoC by Bobby Bingham on 2007-07-14 23:16:15 Originally committed as revision 12689 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -112,7 +112,8 @@ int avfilter_graph_load_chain(AVFilterGraph *graph,
|
|||||||
|
|
||||||
fail:
|
fail:
|
||||||
destroy_graph_filters(graph);
|
destroy_graph_filters(graph);
|
||||||
*first = *last = NULL;
|
if(first) *first = NULL;
|
||||||
|
if(last) *last = NULL;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user