You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/af_pan: fix null pointer dereference on empty token
Fixes Coverity CID 1396254. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
@@ -115,6 +115,11 @@ static av_cold int init(AVFilterContext *ctx)
|
|||||||
if (!args)
|
if (!args)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
arg = av_strtok(args, "|", &tokenizer);
|
arg = av_strtok(args, "|", &tokenizer);
|
||||||
|
if (!arg) {
|
||||||
|
av_log(ctx, AV_LOG_ERROR, "Channel layout not specified\n");
|
||||||
|
ret = AVERROR(EINVAL);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
ret = ff_parse_channel_layout(&pan->out_channel_layout,
|
ret = ff_parse_channel_layout(&pan->out_channel_layout,
|
||||||
&pan->nb_output_channels, arg, ctx);
|
&pan->nb_output_channels, arg, ctx);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
Reference in New Issue
Block a user