X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fcleanup.c;h=4db02a2654a7c3adfdd2640328e023d81dcb045d;hb=36519c3ce33ac973889e92971abded12b51f04db;hp=7611139a65b66e56190660c0d05bf262e884bad6;hpb=be8c57c7e1de5962913f849b862faae01bead264;p=plomrogue diff --git a/src/client/cleanup.c b/src/client/cleanup.c index 7611139..4db02a2 100644 --- a/src/client/cleanup.c +++ b/src/client/cleanup.c @@ -1,4 +1,9 @@ -/* src/client/cleanup.c */ +/* src/client/cleanup.c + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. + */ #include "cleanup.h" #include /* for endwin() */ @@ -18,9 +23,11 @@ static uint32_t cleanup_flags = 0x0000; extern void cleanup() { - char * f_name = "cleanup()"; free(world.map.cells); + free(world.mem_map); free(world.log); + free(world.things_here); + free(world.queue); free(world.player_inventory); if (cleanup_flags & CLEANUP_INTERFACE) { @@ -36,11 +43,11 @@ extern void cleanup() } if (cleanup_flags & CLEANUP_SERVER_IN) { - try_fclose(world.file_server_in, f_name); + try_fclose(world.file_server_in, __func__); } if (cleanup_flags & CLEANUP_SERVER_OUT) { - try_fclose(world.file_server_out, f_name); + try_fclose(world.file_server_out, __func__); } }