X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmisc.c;h=9d7539edec9c2f1a895cb2677685301d04d3fa28;hb=0907037fc188c28471805286a67b786264ba3e2f;hp=fcb53ecf1e6f4423c89ebeeb64cbe6a74578c568;hpb=65d60eba28c8e3128e1603e577c1436a2182f6bd;p=plomrogue diff --git a/src/client/misc.c b/src/client/misc.c index fcb53ec..9d7539e 100644 --- a/src/client/misc.c +++ b/src/client/misc.c @@ -14,7 +14,7 @@ #include "../common/rexit.h" /* exit_err() */ #include "../common/try_malloc.h" /* try_malloc() */ #include "cleanup.h" /* set_cleanup_flag() */ -#include "keybindings.h" /* free_keybindings(), read_keybindings_from_file(), +#include "keybindings.h" /* read_keybindings_from_file(), * write_keybindings_to_file() */ #include "map.h" /* map_center() */ @@ -79,7 +79,7 @@ extern void load_interface_conf() read_keybindings_from_file(line, linemax, file, &world.kb_winkeys); char active_tmp; char * order_tmp; - read_order_wins_visible_active(line, linemax, file, &order_tmp, &active_tmp); + read_order_wins_visible_active(line, linemax, file, &order_tmp,&active_tmp); while (read_winconf_from_file(line, linemax, file)); try_fclose(file, f_name); @@ -110,9 +110,12 @@ extern void load_interface_conf() extern void unload_interface_conf() { - free_keybindings(world.kb_global.kbs); - free_keybindings(world.kb_wingeom.kbs); - free_keybindings(world.kb_winkeys.kbs); + free(world.kb_global.kbs); + world.kb_global.kbs = NULL; + free(world.kb_wingeom.kbs); + world.kb_wingeom.kbs = NULL; + free(world.kb_winkeys.kbs); + world.kb_winkeys.kbs = NULL; while ('\0' != world.winDB.active) { toggle_window(world.winDB.active);