mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
avfilter/asrc_aevalsrc: fix return code, 2nd try
Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
fd6228e657
commit
3d7d819aad
@ -91,7 +91,7 @@ static int init(AVFilterContext *ctx)
|
||||
|
||||
if (!args1) {
|
||||
av_log(ctx, AV_LOG_ERROR, "Channels expressions list is empty\n");
|
||||
ret = args1 ? AVERROR(ENOMEM) : AVERROR(EINVAL);
|
||||
ret = eval->exprs ? AVERROR(ENOMEM) : AVERROR(EINVAL);
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user