diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2008-01-25 12:53:43 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2008-01-25 13:29:46 +0100 |
| commit | 1d9991a0cd9b04dfa96a19bc73b40f01651de478 (patch) | |
| tree | f7825506b70d0c09fe9b69c962cfc9f4ff7ec1aa /openbox/config.c | |
| parent | 3febcbb9ae6a31edbd64a86f0045148bb052fcff (diff) | |
Fix some memleaks.
missing RrFontClose for osd_font in two places.
missing a g_free(area);
Diffstat (limited to 'openbox/config.c')
| -rw-r--r-- | openbox/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openbox/config.c b/openbox/config.c index 56e625d4..50f6aef6 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -982,6 +982,7 @@ void config_shutdown(void) RrFontClose(config_font_inactivewindow); RrFontClose(config_font_menuitem); RrFontClose(config_font_menutitle); + RrFontClose(config_font_osd); for (it = config_desktops_names; it; it = g_slist_next(it)) g_free(it->data); |
