diff options
author | pommicket <pommicket@gmail.com> | 2023-07-19 11:46:28 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-07-19 19:03:22 -0400 |
commit | 4143734747b7b544daecdf1b8676838362c6cb59 (patch) | |
tree | e7c879967027f47b957c35e551b3e971a6aab924 /main.c | |
parent | e5dc92fcd600b15977cad7c81de7b8c1cd11fb87 (diff) |
fix memory leaks (not really leaky)
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1188,6 +1188,7 @@ int main(int argc, char **argv) { ted->lsps[i] = NULL; } lsp_quit(); + syntax_quit(); arr_foreach_ptr(ted->shell_history, char *, cmd) { free(*cmd); |