summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-01-03 22:18:51 +0100
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-01-03 23:06:29 +0100
commitb8d5ca85d9a6e6f42b8dbd6d47cab7bbcffeea90 (patch)
treea64f9b23e4f98279712d3d29bd37659996ce4c39 /src/main.c
parent268732324fd37d9b001694a9206a66cce6681c20 (diff)
downloadratpoison-b8d5ca85d9a6e6f42b8dbd6d47cab7bbcffeea90.zip
if (ptr) free(ptr) is not a good idiom.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index ab1f592..f8d3fed 100644
--- a/src/main.c
+++ b/src/main.c
@@ -297,8 +297,7 @@ handler (Display *d, XErrorEvent *e)
/* If there is already an error to report, replace it with this new
one. */
- if (rp_error_msg)
- free (rp_error_msg);
+ free (rp_error_msg);
rp_error_msg = xstrdup (error_msg);
return 0;