Commit d0b22405 authored by Vittorio Giovara's avatar Vittorio Giovara

vf_frei0r: do not increment string if it reached the end

Bug-Id: 778
CC: libav-stable@libav.org
parent 90411b33
......@@ -149,7 +149,8 @@ static int set_params(AVFilterContext *ctx, const char *params)
if (*params) {
if (!(param = av_get_token(&params, "|")))
return AVERROR(ENOMEM);
params++; /* skip ':' */
if (*params)
params++; /* skip ':' */
ret = set_param(ctx, info, i, param);
av_free(param);
if (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