Browse Source

vf_divtc: dont mix av_strdup and free

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
8afe168c78
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/libmpcodecs/vf_divtc.c

+ 1
- 1
libavfilter/libmpcodecs/vf_divtc.c View File

@@ -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,


Loading…
Cancel
Save