mirror of
https://github.com/openbsd/xenocara.git
synced 2025-12-12 04:09:15 +00:00
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@
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user