mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/avfiltergraph: Check for allocation failure in avfilter_graph_queue_command()
Fixes: CID1396538 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
5036e214b0
commit
55d53cb593
@ -1324,6 +1324,9 @@ int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const
|
||||
queue = &(*queue)->next;
|
||||
next = *queue;
|
||||
*queue = av_mallocz(sizeof(AVFilterCommand));
|
||||
if (!*queue)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
(*queue)->command = av_strdup(command);
|
||||
(*queue)->arg = av_strdup(arg);
|
||||
(*queue)->time = ts;
|
||||
|
Loading…
Reference in New Issue
Block a user