mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
allow rawlog-buffer to shrink again after lowering "rawlog_lines"
This commit is contained in:
parent
01ce66c684
commit
c61a171114
@ -62,7 +62,7 @@ void rawlog_destroy(RAWLOG_REC *rawlog)
|
||||
/* NOTE! str must be dynamically allocated and must not be freed after! */
|
||||
static void rawlog_add(RAWLOG_REC *rawlog, char *str)
|
||||
{
|
||||
if (rawlog->lines->length >= rawlog_lines && rawlog_lines > 0) {
|
||||
while (rawlog->lines->length >= rawlog_lines && rawlog_lines > 0) {
|
||||
void *tmp = g_queue_pop_head(rawlog->lines);
|
||||
g_free(tmp);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user