From 85fb2af369e9ea8638beaf3a34865e3553329a02 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 21 Nov 2014 05:12:55 +0100 Subject: Remove some superfluous NULL checks In all of these situations, NULL is logically not allowed, making the checks redundant. Coverity complained about accessing the pointers before checking them for NULL later. --- player/video.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'player/video.c') diff --git a/player/video.c b/player/video.c index f74bd4d9f5..506c7971a7 100644 --- a/player/video.c +++ b/player/video.c @@ -202,9 +202,6 @@ int reinit_video_filters(struct MPContext *mpctx) if (need_reconfig) filter_reconfig(mpctx, true); - if (!d_video->vfilter) - return 0; - return d_video->vfilter->initialized; } -- cgit v1.2.3