From: Dana Jansens Date: Wed, 26 Mar 2003 13:28:50 +0000 (+0000) Subject: free unused paths X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=1fb5c4b595677a029c75b75ef85a69ec90160da8;p=chaz%2Fopenbox free unused paths --- diff --git a/plugins/keyboard/keysrc.yacc b/plugins/keyboard/keysrc.yacc index 3546d097..d779da83 100644 --- a/plugins/keyboard/keysrc.yacc +++ b/plugins/keyboard/keysrc.yacc @@ -86,6 +86,8 @@ static void addbinding(GList *keylist, char *action, char *apath, int num) /* these have extra data! */ if (a->func == action_execute || a->func == action_restart) a->data.execute.path = apath; + else + g_free(apath); if (a->func == action_desktop) a->data.desktop.desk = (unsigned) num + 1; if (a->func == action_move_relative_horz ||