fix memory leak
This commit is contained in:
parent
b5b4a5d66d
commit
5304bd4921
14 changed files with 22 additions and 7 deletions
BIN
.cache/clangd/index/cavegen.c.31C36C571011BBE3.idx
Normal file
BIN
.cache/clangd/index/cavegen.c.31C36C571011BBE3.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/cavegen.h.E2678233C4D685BB.idx
Normal file
BIN
.cache/clangd/index/cavegen.h.E2678233C4D685BB.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/common.h.62D878C53FCF5453.idx
Normal file
BIN
.cache/clangd/index/common.h.62D878C53FCF5453.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/display.c.7FAC180B80A66DEC.idx
Normal file
BIN
.cache/clangd/index/display.c.7FAC180B80A66DEC.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/display.h.14F74A4A3285599B.idx
Normal file
BIN
.cache/clangd/index/display.h.14F74A4A3285599B.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/entity.h.3B6FA0ECB38E3A2B.idx
Normal file
BIN
.cache/clangd/index/entity.h.3B6FA0ECB38E3A2B.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/ht.c.473DB230E35C76F1.idx
Normal file
BIN
.cache/clangd/index/ht.c.473DB230E35C76F1.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/ht.h.6FF09F553AA22C09.idx
Normal file
BIN
.cache/clangd/index/ht.h.6FF09F553AA22C09.idx
Normal file
Binary file not shown.
BIN
.cache/clangd/index/main.c.0EAB2510BE9DFF6B.idx
Normal file
BIN
.cache/clangd/index/main.c.0EAB2510BE9DFF6B.idx
Normal file
Binary file not shown.
1
ht.c
Normal file
1
ht.c
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#include "ht.h"
|
|
@ -30,11 +30,14 @@ enum action {
|
||||||
NUM_ACTIONS,
|
NUM_ACTIONS,
|
||||||
};
|
};
|
||||||
|
|
||||||
display_t *display_init(void);
|
display_t *display_init(void);
|
||||||
void display_map(display_t *disp, struct map *map, ht_t *entities);
|
void display_destroy(display_t *disp);
|
||||||
void display_instructions(display_t *disp);
|
|
||||||
void display_message(display_t *disp, char *msg);
|
void display_map(display_t *disp, struct map *map, ht_t *entities);
|
||||||
void display_status(display_t *disp, struct entity *entity);
|
void display_instructions(display_t *disp);
|
||||||
|
void display_message(display_t *disp, char *msg);
|
||||||
|
void display_status(display_t *disp, struct entity *entity);
|
||||||
|
|
||||||
enum action display_process_input(void);
|
enum action display_process_input(void);
|
||||||
|
|
||||||
#endif // DISPLAY_H_
|
#endif // DISPLAY_H_
|
||||||
|
|
1
main.c
1
main.c
|
@ -138,6 +138,7 @@ int main(void)
|
||||||
|
|
||||||
free(map.map);
|
free(map.map);
|
||||||
ht_destroy(entities);
|
ht_destroy(entities);
|
||||||
|
display_destroy(disp);
|
||||||
|
|
||||||
endwin();
|
endwin();
|
||||||
|
|
||||||
|
|
|
@ -89,6 +89,16 @@ display_t *display_init(void)
|
||||||
return create_windows();
|
return create_windows();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void display_destroy(display_t *disp)
|
||||||
|
{
|
||||||
|
delwin(disp->main);
|
||||||
|
delwin(disp->inst);
|
||||||
|
delwin(disp->msgs);
|
||||||
|
delwin(disp->stat);
|
||||||
|
|
||||||
|
free(disp);
|
||||||
|
}
|
||||||
|
|
||||||
void display_map(display_t *disp, struct map *map, ht_t *entities)
|
void display_map(display_t *disp, struct map *map, ht_t *entities)
|
||||||
{
|
{
|
||||||
// print map
|
// print map
|
||||||
|
|
4
src/ht.c
4
src/ht.c
|
@ -4,8 +4,6 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define SIZE 1024
|
|
||||||
|
|
||||||
struct node {
|
struct node {
|
||||||
char *key;
|
char *key;
|
||||||
void *val;
|
void *val;
|
||||||
|
@ -56,6 +54,8 @@ static void rehash(ht_t *h, int newsize)
|
||||||
h->curr_index = 0;
|
h->curr_index = 0;
|
||||||
h->curr_node = NULL;
|
h->curr_node = NULL;
|
||||||
h->iterating = false;
|
h->iterating = false;
|
||||||
|
|
||||||
|
free(new_h);
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned long djb2_hash(char *str)
|
static unsigned long djb2_hash(char *str)
|
||||||
|
|
Loading…
Add table
Reference in a new issue