X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fif.c;h=5f4a356f8d121d644363dc16dde8e6b46614454f;hb=34178097d559ef522ea0984091489c209f4e9e0e;hp=dd86086ba9cb29bbe2653721ebde39dd6e8d055a;hpb=73575c10ce3ede1637e4f959b56e1f7d5f110b91;p=chaz%2Fopenbox diff --git a/openbox/actions/if.c b/openbox/actions/if.c index dd86086b..5f4a356f 100644 --- a/openbox/actions/if.c +++ b/openbox/actions/if.c @@ -37,7 +37,7 @@ static gpointer setup_func(xmlNodePtr node) xmlNodePtr n; Options *o; - o = g_new0(Options, 1); + o = g_slice_new0(Options); if ((n = obt_xml_find_node(node, "shaded"))) { if (obt_xml_node_bool(n)) @@ -113,7 +113,7 @@ static void free_func(gpointer options) o->elseacts = g_slist_delete_link(o->elseacts, o->elseacts); } - g_free(o); + g_slice_free(Options, o); } /* Always return FALSE because its not interactive */