Commit 8afe168c authored by Michael Niedermayer's avatar Michael Niedermayer

vf_divtc: dont mix av_strdup and free

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent baa5d6df
......@@ -601,7 +601,7 @@ static int vf_open(vf_instance_t *vf, char *args)
const char *filename="framediff.log";
char *ap, *q, *a;
if(args && !(args=av_strdup(args)))
if(args && !(args=strdup(args)))
{
nomem:
ff_mp_msg(MSGT_VFILTER, MSGL_FATAL,
......
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