mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
avfilter/aeval: Fix use of uninitialized variable
Fixes CID1135776 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b6eee405ff
commit
0fe6906d96
@ -172,7 +172,7 @@ end:
|
||||
static av_cold int init(AVFilterContext *ctx)
|
||||
{
|
||||
EvalContext *eval = ctx->priv;
|
||||
int ret;
|
||||
int ret = 0;
|
||||
|
||||
if (eval->chlayout_str) {
|
||||
if (!strcmp(eval->chlayout_str, "same") && !strcmp(ctx->filter->name, "aeval")) {
|
||||
|
Loading…
Reference in New Issue
Block a user