diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-migrate.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 065ccb9f19..575d22d510 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2007-04-03 Srinivasa Ragavan <sragavan@novell.com> + + * em-migrate.c: (emm_setup_initial): Fix for evolution on crashing + while setting up the first account. + 2007-04-03 Matthew Barnes <mbarnes@redhat.com> * em-event.h: Don't #include <composer/e-msg-composer.h> since we diff --git a/mail/em-migrate.c b/mail/em-migrate.c index 85887fb5e4..40e1c28f6c 100644 --- a/mail/em-migrate.c +++ b/mail/em-migrate.c @@ -2664,10 +2664,11 @@ emm_setup_initial(const char *evolution_dir) while (*language_names != NULL) { local = g_build_filename ( EVOLUTION_PRIVDATADIR, "default", - *language_names++, "mail", "local", NULL); + *language_names, "mail", "local", NULL); if (g_file_test (local, G_FILE_TEST_EXISTS)) break; g_free (local); + language_names++; } /* Make sure we found one. */ |