Fix modest_tny_msg_header_get_all_recipients_list (in case from is empty)
[modest] / src / modest-init.c
index a4394df..a4f4a89 100644 (file)
@@ -36,6 +36,7 @@
 #include <modest-runtime-priv.h>
 #include <modest-init.h>
 #include <modest-defs.h>
+#include "modest-address-book.h"
 #include <modest-singletons.h>
 #include <widgets/modest-header-view.h>
 #include <widgets/modest-folder-view.h>
@@ -245,6 +246,9 @@ modest_init (int argc, char *argv[])
                return FALSE;
        }
 
+       /* Initialize addressbook */
+       modest_address_book_init ();
+
        reset = modest_runtime_get_debug_flags () & MODEST_RUNTIME_DEBUG_FACTORY_SETTINGS;
        if (!init_header_columns(modest_runtime_get_conf(), reset)) {
                modest_init_uninit ();
@@ -564,6 +568,7 @@ init_debug_g_type (void)
        g_type_init_with_debug_flags (gflags);
 }
 
+#ifndef DEBUG
 static void 
 null_log(const gchar* dom, 
         GLogLevelFlags l, 
@@ -572,6 +577,7 @@ null_log(const gchar* dom,
 {
        return;
 };
+#endif
 
 static void
 init_debug_logging (void)