1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

one more extra cleanup for textbuffer_remove_all_lines()

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1720 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-08-08 15:48:54 +00:00 committed by cras
parent b9a83129fe
commit d248a87497

View File

@ -323,16 +323,18 @@ void textbuffer_remove_all_lines(TEXT_BUFFER_REC *buffer)
for (tmp = buffer->text_chunks; tmp != NULL; tmp = tmp->next)
g_mem_chunk_free(text_chunk, tmp->data);
g_slist_free(buffer->text_chunks);
buffer->text_chunks = NULL;
buffer->text_chunks = NULL;
while (buffer->first_line != NULL) {
line = buffer->first_line->next;
g_mem_chunk_free(line_chunk, buffer->first_line);
buffer->first_line = line;
}
buffer->lines_count = 0;
buffer->cur_line = NULL;
buffer->lines_count = 0;
buffer->cur_text = NULL;
buffer->last_eol = TRUE;
}