Module: libav Branch: master Commit: de859358830cfd1daffb1773f6bb069659027321
Author: Stefano Sabatini <[email protected]> Committer: Anton Khirnov <[email protected]> Date: Sun Jun 12 13:54:22 2011 +0200 cmdutils: add missing NULL check in parse_options() Fix ffplay -i FILE, which was recently broken. Signed-off-by: Anton Khirnov <[email protected]> --- cmdutils.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cmdutils.c b/cmdutils.c index b9a5d1b..c73d5a1 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -277,7 +277,7 @@ unknown_opt: *po->u.int64_arg = parse_number_or_die(opt, arg, OPT_INT64, INT64_MIN, INT64_MAX); } else if (po->flags & OPT_FLOAT) { *po->u.float_arg = parse_number_or_die(opt, arg, OPT_FLOAT, -INFINITY, INFINITY); - } else { + } else if (po->u.func_arg) { if (po->u.func_arg(opt, arg) < 0) { fprintf(stderr, "%s: failed to set value '%s' for option '%s'\n", argv[0], arg, opt); exit(1); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
