mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Fix a memory leak with /lastlog -count and rejected (too much) /lastlog.
The matched lines would not be freed when they expired from the buffer. git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4878 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
c955bcd672
commit
875adf35a0
1 changed files with 2 additions and 0 deletions
|
|
@ -153,6 +153,7 @@ static void show_lastlog(const char *searchtext, GHashTable *optlist,
|
|||
if (g_hash_table_lookup(optlist, "count") != NULL) {
|
||||
printformat_window(active_win, MSGLEVEL_CLIENTNOTICE,
|
||||
TXT_LASTLOG_COUNT, len);
|
||||
textbuffer_line_unref_list(WINDOW_GUI(window)->view->buffer, list);
|
||||
g_list_free(list);
|
||||
return;
|
||||
}
|
||||
|
|
@ -162,6 +163,7 @@ static void show_lastlog(const char *searchtext, GHashTable *optlist,
|
|||
printformat_window(active_win,
|
||||
MSGLEVEL_CLIENTNOTICE|MSGLEVEL_LASTLOG,
|
||||
TXT_LASTLOG_TOO_LONG, len);
|
||||
textbuffer_line_unref_list(WINDOW_GUI(window)->view->buffer, list);
|
||||
g_list_free(list);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue