aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authoroga2009-01-22 18:16:38 +0000
committeroga2009-01-22 18:16:38 +0000
commit9f7c5b89793258b4c7126f036eb1493b0bb9d3fc (patch)
treeada052fc490ebf88c281979ae20a72a232b68191 /parse.y
parent0664ee7338baf05bc2562d5c9df31878e0fff21e (diff)
downloadcwm-9f7c5b89793258b4c7126f036eb1493b0bb9d3fc.tar.gz
The default font name is strduped, so don't test for default font name
(therefore leaking it) when cleaning up a conf struct. ok okan@
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y5
1 files changed, 2 insertions, 3 deletions
diff --git a/parse.y b/parse.y
index e3e3bf8..996664e 100644
--- a/parse.y
+++ b/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.16 2009/01/21 15:04:38 todd Exp $ */
+/* $OpenBSD: parse.y,v 1.17 2009/01/22 18:16:38 oga Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -502,8 +502,7 @@ conf_clear(struct conf *c)
free(mb);
}
- if (c->DefaultFontName != NULL &&
- c->DefaultFontName != DEFAULTFONTNAME)
+ if (c->DefaultFontName != NULL)
free(c->DefaultFontName);
}