mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/eval: factor av_expr_free() calls out
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b63c9a9990
commit
61123634dd
|
@ -683,19 +683,19 @@ int av_expr_parse(AVExpr **expr, const char *s,
|
|||
if ((ret = parse_expr(&e, &p)) < 0)
|
||||
goto end;
|
||||
if (*p.s) {
|
||||
av_expr_free(e);
|
||||
av_log(&p, AV_LOG_ERROR, "Invalid chars '%s' at the end of expression '%s'\n", p.s, s0);
|
||||
ret = AVERROR(EINVAL);
|
||||
goto end;
|
||||
}
|
||||
if (!verify_expr(e)) {
|
||||
av_expr_free(e);
|
||||
ret = AVERROR(EINVAL);
|
||||
goto end;
|
||||
}
|
||||
e->var= av_mallocz(sizeof(double) *VARS);
|
||||
*expr = e;
|
||||
e = NULL;
|
||||
end:
|
||||
av_expr_free(e);
|
||||
av_free(w);
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue