summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2018-10-06 13:53:33 -0700
committerKevin McCarthy <kevin@8t8.us>2018-10-06 19:59:52 -0700
commit619fe06931b78af7879bf6071086c005c458f838 (patch)
treef10afe10f42a9d6d8863a555efb4a49a9c058049 /main.c
parent563afcc13a3f34760a685ccc64ac4af268f16f0a (diff)
Add buffer pool functions.
Also add a few helper functions: mutt_buffer_clear(), mutt_buffer_strcpy(), and a macro mutt_b2s to grab the buffer data as a const char *.
Diffstat (limited to 'main.c')
-rw-r--r--main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c
index a84b8bcf..10fc5256 100644
--- a/main.c
+++ b/main.c
@@ -1337,6 +1337,7 @@ cleanup_and_exit:
#endif
mutt_free_opts ();
mutt_free_windows ();
+ mutt_buffer_pool_free ();
if (!option (OPTNOCURSES))
mutt_endwin (exit_endwin_msg);
exit (exit_code);