diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-02-09 03:16:31 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-02-09 03:16:31 +0800 |
commit | 1e69f13d5c6afb4c2b55c0b04d31147d8fcacc72 (patch) | |
tree | ecf249d5722d9b4fb83fbec32ddb920af7f375dd | |
parent | b84693d1c42cf0a7ec4ed71cd410e241ee2380ed (diff) | |
download | gsoc2013-evolution-1e69f13d5c6afb4c2b55c0b04d31147d8fcacc72.tar.gz gsoc2013-evolution-1e69f13d5c6afb4c2b55c0b04d31147d8fcacc72.tar.zst gsoc2013-evolution-1e69f13d5c6afb4c2b55c0b04d31147d8fcacc72.zip |
Initialize the personal_source to NULL
2004-02-08 Rodney Dawes <dobey@ximian.com>
* gui/component/addressbook-migrate.c (create_groups): Initialize the
personal_source to NULL
Fixes #54015
svn path=/trunk/; revision=24674
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-migrate.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index fd732348ac..a76c4560d8 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2004-02-08 Rodney Dawes <dobey@ximian.com> + + * gui/component/addressbook-migrate.c (create_groups): Initialize the + personal_source to NULL + + Fixes #54015 + 2004-02-08 Sivaiah Nallagatla <snallagatla@novell.com> * gui/widgets/e-addressbook-view.c (delete) : pass contact diff --git a/addressbook/gui/component/addressbook-migrate.c b/addressbook/gui/component/addressbook-migrate.c index fbee686175..0cd48cf62b 100644 --- a/addressbook/gui/component/addressbook-migrate.c +++ b/addressbook/gui/component/addressbook-migrate.c @@ -364,6 +364,7 @@ create_groups (MigrationContext *context, *on_this_computer = NULL; *on_ldap_servers = NULL; + *personal_source = NULL; base_uri = g_build_filename (addressbook_component_peek_base_directory (context->component), "addressbook", "local", |