diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-12-11 17:51:43 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-12-11 17:51:43 +0000 |
commit | 7b4c38a5f87d5af9a1c462d12eaa91446f854f5b (patch) | |
tree | 4ca51fce39ed8634ae07333b2e24159db0a52017 /app/cwm/conf.c | |
parent | 8e6da53b1b3161f0f4b9a309c0292962ef87b4da (diff) |
Implement _NET_DESKTOP_NAMES, this one was a bit tricky since thespec
says that a pager can change the property at any time (most need a
clientmessage). So deal with property updates.
Needed to shuffle some of the other code around since we can't just use
shortcut_to_name[] everywhere now.
ok okan@
Diffstat (limited to 'app/cwm/conf.c')
-rw-r--r-- | app/cwm/conf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c index b07a3de86..cc3a03e1b 100644 --- a/app/cwm/conf.c +++ b/app/cwm/conf.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: conf.c,v 1.72 2009/12/08 16:52:17 okan Exp $ + * $Id: conf.c,v 1.73 2009/12/11 17:51:42 oga Exp $ */ #include "headers.h" @@ -225,7 +225,6 @@ conf_clear(struct conf *c) xfree(ag->class); if (ag->name) xfree(ag->name); - xfree(ag->group); xfree(ag); } |