Browse Source

avutil/opt: check return value of av_bprint_finalize()

Reviewed-by:   Nicolas George <george@nsup.org>
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
tags/n4.4
Limin Wang 5 years ago
parent
commit
200c9b1c96
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavutil/opt.c

+ 3
- 1
libavutil/opt.c View File

@@ -2120,6 +2120,8 @@ int av_opt_serialize(void *obj, int opt_flags, int flags, char **buffer,
av_freep(&buf);
}
}
av_bprint_finalize(&bprint, buffer);
ret = av_bprint_finalize(&bprint, buffer);
if (ret < 0)
return ret;
return 0;
}

Loading…
Cancel
Save