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 --- input/lirc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'input/lirc.c') diff --git a/input/lirc.c b/input/lirc.c index a10d83816f..15a2d82d7f 100644 --- a/input/lirc.c +++ b/input/lirc.c @@ -115,10 +115,8 @@ int mp_input_lirc_read(int fd,char* dest, int s) { void mp_input_lirc_close(int fd) { - if(cmd_buf) { - free(cmd_buf); - cmd_buf = NULL; - } + free(cmd_buf); + cmd_buf = NULL; lirc_freeconfig(lirc_config); lirc_deinit(); } -- cgit v1.2.3