forked from FFmpeg/FFmpeg
cmdutils: fix null pointer dereference
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8b3affda87
commit
f3abdf4392
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue