Commit f3abdf43 authored by Michael Niedermayer's avatar Michael Niedermayer

cmdutils: fix null pointer dereference

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8b3affda
......@@ -530,8 +530,8 @@ int opt_default(void *optctx, const char *opt, const char *arg)
#endif
#if CONFIG_AVRESAMPLE
rc_class = avresample_get_class();
if (av_opt_find(&rc_class, opt, NULL, 0,
AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)) {
if ((o=av_opt_find(&rc_class, opt, NULL, 0,
AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ))) {
av_dict_set(&resample_opts, opt, arg, FLAGS);
consumed = 1;
}
......
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