From aeb23fc4549a25ef32ff085d2a76227f90caf403 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Tue, 14 Oct 2014 16:46:42 +0100 Subject: avprobe: Remove a pointless check The element is always valid. CC: libav-stable@libav.org Bug-Id: CID 732276 --- avprobe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'avprobe.c') diff --git a/avprobe.c b/avprobe.c index c56ac27efa..5fc9ad5694 100644 --- a/avprobe.c +++ b/avprobe.c @@ -181,7 +181,7 @@ static void ini_print_object_header(const char *name) } avio_printf(probe_out, "%s", name); - if (el && el->type == ARRAY) + if (el->type == ARRAY) avio_printf(probe_out, ".%"PRId64"", el->nb_elems); avio_printf(probe_out, "]\n"); } -- cgit v1.2.3