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_directx.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libvo/vo_directx.c') diff --git a/libvo/vo_directx.c b/libvo/vo_directx.c index 9a940c6553..b80f0bdc01 100644 --- a/libvo/vo_directx.c +++ b/libvo/vo_directx.c @@ -1177,8 +1177,7 @@ static void flip_page(void) mp_msg(MSGT_VO,MSGL_WARN,"stride changed !!!! disabling direct rendering\n"); vo_directrendering=0; } - if (tmp_image) - free(tmp_image); + free(tmp_image); tmp_image = NULL; dstride = ddsdsf.lPitch; image = ddsdsf.lpSurface; -- cgit v1.2.3