mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
db: Fix memleaks
This commit is contained in:
parent
1afb708533
commit
5862e5b159
@ -315,6 +315,7 @@ log_database_get_previous_chat(const gchar *const contact_barejid)
|
||||
history = g_slist_append(history, msg);
|
||||
}
|
||||
sqlite3_finalize(stmt);
|
||||
free(query);
|
||||
|
||||
return history;
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user