commit 85737371ec5a69f3795e6ba354625a8af5e13a95 parent d8f942f180cd83287e51165a397a8f19e0afb7da Author: hhvn <dev@hhvn.uk> Date: Thu, 9 Dec 2021 18:05:06 +0000 ui.c: free strs in struct Keybind Diffstat:
M | ui.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/ui.c b/ui.c @@ -1396,6 +1396,8 @@ ui_unbind(char *binding) { if (p->next) p->next->prev = p->prev; + free(p->binding); + free(p->cmd); free(p); return 0; }