From: Michael Stefaniuc Subject: [PATCH] qedit: Drop redundant NULL check before free() Message-Id: <20200921205233.137684-5-mstefani@winehq.org> Date: Mon, 21 Sep 2020 22:52:33 +0200 Signed-off-by: Michael Stefaniuc --- dlls/qedit/mediadet.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/qedit/mediadet.c b/dlls/qedit/mediadet.c index e1defaa9a67..bacf5208a08 100644 --- a/dlls/qedit/mediadet.c +++ b/dlls/qedit/mediadet.c @@ -66,8 +66,7 @@ static void MD_cleanup(MediaDetImpl *This) This->splitter = NULL; if (This->graph) IGraphBuilder_Release(This->graph); This->graph = NULL; - if (This->filename) - free(This->filename); + free(This->filename); This->filename = NULL; This->num_streams = -1; This->cur_stream = 0; -- 2.26.2