From fe3c4810e1c8b535caf07df8e4434e322d3e6fc0 Mon Sep 17 00:00:00 2001 From: cboesch Date: Sun, 14 Nov 2010 09:12:34 +0000 Subject: cleanup: remove NULL checks before free() all over the code git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32624 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_dxr2.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'libvo/vo_dxr2.c') diff --git a/libvo/vo_dxr2.c b/libvo/vo_dxr2.c index 099446f635..00d5d2f3c0 100644 --- a/libvo/vo_dxr2.c +++ b/libvo/vo_dxr2.c @@ -790,10 +790,8 @@ static void uninit(void) close(dxr2_fd); dxr2_fd = -1; } - if(sub_img) { - free(sub_img); - sub_img = NULL; - } + free(sub_img); + sub_img = NULL; if(sub_vo) { int cc = vo_config_count; vo_config_count = sub_config_count; -- cgit v1.2.3