Commit efbf107f authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/aeval: silence "may be used uninitialized" warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1898c2f4
......@@ -105,7 +105,7 @@ static int parse_channel_expressions(AVFilterContext *ctx,
{
EvalContext *eval = ctx->priv;
char *args1 = av_strdup(eval->exprs);
char *expr, *last_expr, *buf;
char *expr, *last_expr = NULL, *buf;
double (* const *func1)(void *, double) = NULL;
const char * const *func1_names = NULL;
int i, ret = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment