least intrusive way to plug a memleak when unbinding a duplicate key for

kbfunc_cmdexec; from Tiago Cunha
This commit is contained in:
okan
2013-01-01 14:33:52 +00:00
parent 6cb334e503
commit ccbb1f1529
2 changed files with 8 additions and 1 deletions

View File

@@ -74,6 +74,8 @@
#define CWM_MENU_DUMMY 0x0001
#define CWM_MENU_FILE 0x0002
#define ARG_CHAR 0x0001
#define ARG_INT 0x0002
union arg {
char *c;
int i;
@@ -239,6 +241,7 @@ struct keybinding {
int keycode;
#define KBFLAG_NEEDCLIENT 0x0001
int flags;
int argtype;
};
TAILQ_HEAD(keybinding_q, keybinding);