# HG changeset patch # User Michael Pavone # Date 1529477256 25200 # Node ID ea687ca7d845069a718e6f5045dcb78e480b8cbb # Parent 5453aafa0656daacf63119c0b694de6b7fe559df Fix missing include in bindings.c diff -r 5453aafa0656 -r ea687ca7d845 bindings.c --- a/bindings.c Mon Jun 18 00:50:29 2018 -0700 +++ b/bindings.c Tue Jun 19 23:47:36 2018 -0700 @@ -1,3 +1,4 @@ +#include #include "render.h" #include "system.h" #include "io.h" @@ -971,6 +972,7 @@ tern_node * keys = tern_find_path(config, "bindings\0keys\0", TVAL_NODE).ptrval; process_keys(keys, special, padbuttons, mousebuttons, NULL); + tern_free(special); memset(mice, 0, sizeof(mice)); tern_node * mice = tern_find_path(config, "bindings\0mice\0", TVAL_NODE).ptrval;