fix: fixed memory leak on exit

This commit is contained in:
Lorenzo Torres 2024-08-20 13:17:26 +02:00
parent 9b8539e1e0
commit 81a1c7447c
3 changed files with 25 additions and 1 deletions

1
imap.h
View file

@ -94,5 +94,6 @@ void imap_flush(client_list *node, uint8_t ssl);
uint8_t imap_cmd_exec(imap_cmd cmd, client_list *node, uint8_t ssl, uint8_t state);
void imap_trie_populate(void);
void imap_trie_encode(char *str, uint8_t cmd);
void imap_trie_free(trie_node *node);
#endif /* ifndef IMAP_H */