db: Fix memleaks

This commit is contained in:
Michael Vetter
2020-04-06 16:04:34 +02:00
parent 1afb708533
commit 5862e5b159
2 changed files with 2 additions and 2 deletions

View File

@@ -491,8 +491,7 @@ _chatwin_history(ProfChatWin *chatwin, const char *const contact_barejid)
}
chatwin->history_shown = TRUE;
//TODO: message_free
g_slist_free_full(history, free);
g_slist_free_full(history, (GDestroyNotify)message_free);
}
}