aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authorokan2014-01-30 22:41:16 +0000
committerokan2014-01-30 22:41:16 +0000
commitc98fe0797ad171985b3a2be70afdef2870289ee6 (patch)
tree41dcf1f442161e9d27c19c033e58d0e52c8efc91 /parse.y
parentedcee6832d3520912024707777453cb30f809e6b (diff)
downloadcwm-c98fe0797ad171985b3a2be70afdef2870289ee6.tar.gz
re-add lost free from previous
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 59b8d21..40b706b 100644
--- a/parse.y
+++ b/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.57 2014/01/30 22:17:22 okan Exp $ */
+/* $OpenBSD: parse.y,v 1.58 2014/01/30 22:41:16 okan Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -157,6 +157,7 @@ main : FONTNAME STRING {
}
| IGNORE STRING {
conf_ignore(conf, $2);
+ free($2);
}
| BIND STRING string {
if (!conf_bind_kbd(conf, $2, $3)) {