1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

actually create the queue, too

This commit is contained in:
ailin-nemui 2018-10-04 09:31:08 +02:00
parent 95692d4d86
commit ff0daf5870

View File

@ -41,7 +41,8 @@ RAWLOG_REC *rawlog_create(void)
RAWLOG_REC *rec;
rec = g_new0(RAWLOG_REC, 1);
return rec;
rec->lines = g_queue_new();
return rec;
}
void rawlog_destroy(RAWLOG_REC *rawlog)