1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Free titlebar current_recipient when switching to console

This commit is contained in:
James Booth 2014-06-17 22:05:32 +01:00
parent e2aa4d6fd1
commit fa0be4e50e

View File

@ -95,6 +95,9 @@ void
title_bar_console(void)
{
werase(win);
if (current_recipient != NULL) {
free(current_recipient);
}
current_recipient = NULL;
typing = FALSE;
typing_elapsed = NULL;
@ -264,4 +267,4 @@ _title_bar_draw(void)
wnoutrefresh(win);
inp_put_back();
}
}