X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fshowmenu.c;h=485a31d5a7e06880eee48d0f1f6aef512db13911;hb=HEAD;hp=e60f1c69e4fd280e0a856c24d3e6cc11a9132716;hpb=3bd4397b6ec5212bfe53a36892746962dc45dbeb;p=chaz%2Fopenbox diff --git a/openbox/actions/showmenu.c b/openbox/actions/showmenu.c index e60f1c69..485a31d5 100644 --- a/openbox/actions/showmenu.c +++ b/openbox/actions/showmenu.c @@ -20,7 +20,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, "menu"))) o->name = obt_xml_node_string(n); @@ -31,7 +31,7 @@ static void free_func(gpointer options) { Options *o = options; g_free(o->name); - g_free(o); + g_slice_free(Options, o); } /* Always return FALSE because its not interactive */