mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 14:16:21 +00:00
Fix some glib nullptr-check warning messages
Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
This commit is contained in:
@@ -481,7 +481,7 @@ static void
|
|||||||
_accounts_set_string_option(const char* account_name, const char* const option, const char* const value)
|
_accounts_set_string_option(const char* account_name, const char* const option, const char* const value)
|
||||||
{
|
{
|
||||||
if (accounts_account_exists(account_name)) {
|
if (accounts_account_exists(account_name)) {
|
||||||
g_key_file_set_string(accounts, account_name, option, value);
|
g_key_file_set_string(accounts, account_name, option, value ?: "");
|
||||||
_save_accounts();
|
_save_accounts();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -300,7 +300,8 @@ sv_ev_room_history(ProfMessage* message)
|
|||||||
ProfMucWin* mucwin = wins_get_muc(message->from_jid->barejid);
|
ProfMucWin* mucwin = wins_get_muc(message->from_jid->barejid);
|
||||||
if (mucwin) {
|
if (mucwin) {
|
||||||
// if this is the first successful connection
|
// if this is the first successful connection
|
||||||
if (ev_is_first_connect()) {
|
// or for some reason the `last_msg_timestamp` is not initialized
|
||||||
|
if (ev_is_first_connect() || !mucwin->last_msg_timestamp) {
|
||||||
// save timestamp of last received muc message
|
// save timestamp of last received muc message
|
||||||
// so we dont display, if there was no activity in channel, once we reconnect
|
// so we dont display, if there was no activity in channel, once we reconnect
|
||||||
if (mucwin->last_msg_timestamp) {
|
if (mucwin->last_msg_timestamp) {
|
||||||
|
|||||||
Reference in New Issue
Block a user