summary refs log tree commit diff
path: root/parse.y
diff options
context:
space:
mode:
authorokan <okan>2014-01-30 22:41:16 +0000
committerokan <okan>2014-01-30 22:41:16 +0000
commit34477b8a35ab71bf384db714ad0e7043b701be0e (patch)
treee7a9739b7771716205e38c45353980886978cb40 /parse.y
parentcc1902f57cb23e0028c07e149882698124b025bd (diff)
downloadcwm-34477b8a35ab71bf384db714ad0e7043b701be0e.tar.gz
cwm-34477b8a35ab71bf384db714ad0e7043b701be0e.tar.xz
cwm-34477b8a35ab71bf384db714ad0e7043b701be0e.zip
re-add lost free from previous
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index dbc1506..7df4f98 100644
--- a/parse.y
+++ b/parse.y
@@ -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)) {