diff options
author | cboesch <cboesch@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-11-14 09:12:34 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-14 13:11:20 +0200 |
commit | fe3c4810e1c8b535caf07df8e4434e322d3e6fc0 (patch) | |
tree | cbcd859f358c479223eb7b0aa2a2d3dfe1c81b69 /libvo/vo_winvidix.c | |
parent | b492561241f2a3263a8ab558fafc957130dbdfc1 (diff) |
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
Diffstat (limited to 'libvo/vo_winvidix.c')
-rw-r--r-- | libvo/vo_winvidix.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libvo/vo_winvidix.c b/libvo/vo_winvidix.c index 7510bd0fd5..9655d95b4b 100644 --- a/libvo/vo_winvidix.c +++ b/libvo/vo_winvidix.c @@ -312,11 +312,8 @@ static void uninit(void){ if ( !vo_config_count ) return; vidix_term(); - if (vidix_name){ - free(vidix_name); - vidix_name = NULL; - } - // + free(vidix_name); + vidix_name = NULL; } static int preinit(const char *arg){ |