diff options
author | okan | 2014-01-30 22:41:16 +0000 |
---|---|---|
committer | okan | 2014-01-30 22:41:16 +0000 |
commit | c98fe0797ad171985b3a2be70afdef2870289ee6 (patch) | |
tree | 41dcf1f442161e9d27c19c033e58d0e52c8efc91 /parse.y | |
parent | edcee6832d3520912024707777453cb30f809e6b (diff) | |
download | cwm-c98fe0797ad171985b3a2be70afdef2870289ee6.tar.gz |
re-add lost free from previous
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)) { |