From 3e93782be91d774297b571ebcde221bf96f47cf5 Mon Sep 17 00:00:00 2001 From: Jonny Lamb Date: Fri, 6 Mar 2009 11:51:52 +0000 Subject: Use g_list_concat even if the current GList is empty (NULL). Signed-off-by: Jonny Lamb svn path=/trunk/; revision=2588 --- libempathy/empathy-log-manager.c | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) (limited to 'libempathy') diff --git a/libempathy/empathy-log-manager.c b/libempathy/empathy-log-manager.c index 2a1259659..46463733f 100644 --- a/libempathy/empathy-log-manager.c +++ b/libempathy/empathy-log-manager.c @@ -236,12 +236,8 @@ empathy_log_manager_get_messages_for_date (EmpathyLogManager *manager, { EmpathyLogSource *source = EMPATHY_LOG_SOURCE (l->data); - if (!out) - out = empathy_log_source_get_messages_for_date (source, account, - chat_id, chatroom, date); - else - out = g_list_concat (out, empathy_log_source_get_messages_for_date ( - source, account, chat_id, chatroom, date)); + out = g_list_concat (out, empathy_log_source_get_messages_for_date ( + source, account, chat_id, chatroom, date)); } return out; @@ -290,11 +286,8 @@ empathy_log_manager_get_chats (EmpathyLogManager *manager, { EmpathyLogSource *source = EMPATHY_LOG_SOURCE (l->data); - if (!out) - out = empathy_log_source_get_chats (source, account); - else - out = g_list_concat (out, - empathy_log_source_get_chats (source, account)); + out = g_list_concat (out, + empathy_log_source_get_chats (source, account)); } return out; @@ -316,11 +309,8 @@ empathy_log_manager_search_new (EmpathyLogManager *manager, { EmpathyLogSource *source = EMPATHY_LOG_SOURCE (l->data); - if (!out) - out = empathy_log_source_search_new (source, text); - else - out = g_list_concat (out, - empathy_log_source_search_new (source, text)); + out = g_list_concat (out, + empathy_log_source_search_new (source, text)); } return out; -- cgit v1.2.3