From 637902b452c723e8d5fdb714e8a38861e9c9f64e Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Thu, 6 Feb 2014 16:49:26 +0100 Subject: [PATCH] The check for NULL is not necessary before free. --- surf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/surf.c b/surf.c index 1ec4c62..2e9c38d 100644 --- a/surf.c +++ b/surf.c @@ -685,8 +685,7 @@ loaduri(Client *c, const Arg *arg) { c->title = copystr(&c->title, u); updatetitle(c); } - if(u != NULL) - g_free(u); + g_free(u); } static void -- 2.20.1