2006-11-03 Loïc Minier <lool@dooz.org>
* src/config.c: Fix a double free() which causes a crash on
first start, when theme_dir isn't set. Fixes #114425.
+2006-11-03 Loïc Minier <lool@dooz.org>
+
+ * src/config.c: Fix a double free() which causes a crash on
+ first start, when theme_dir isn't set. Fixes #114425.
+
2006-09-02 Jordi Mallach <jordi@sindominio.net>
* configure.in: Release gtetrinet 0.7.10.
/* if there is no theme configured, then we fallback to DEFAULTTHEME */
if (!p || !p[0])
{
- g_free (p);
g_string_assign(currenttheme, DEFAULTTHEME);
gconf_client_set_string (gconf_client, "/apps/gtetrinet/themes/theme_dir", currenttheme->str, NULL);
}