aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/pas/pas-backend-file.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-05-02 04:44:00 +0800
committerChris Lahey <clahey@src.gnome.org>2000-05-02 04:44:00 +0800
commitedb8c5850a180be4d015a90da44cf2581fb27ba9 (patch)
tree98f7615cf7be9a6b5770a371e8fe4e7a97c2b821 /addressbook/backend/pas/pas-backend-file.c
parentba2128204f596f12092f6a0ef9da4e51a5dafde5 (diff)
downloadgsoc2013-evolution-edb8c5850a180be4d015a90da44cf2581fb27ba9.tar
gsoc2013-evolution-edb8c5850a180be4d015a90da44cf2581fb27ba9.tar.gz
gsoc2013-evolution-edb8c5850a180be4d015a90da44cf2581fb27ba9.tar.bz2
gsoc2013-evolution-edb8c5850a180be4d015a90da44cf2581fb27ba9.tar.lz
gsoc2013-evolution-edb8c5850a180be4d015a90da44cf2581fb27ba9.tar.xz
gsoc2013-evolution-edb8c5850a180be4d015a90da44cf2581fb27ba9.tar.zst
gsoc2013-evolution-edb8c5850a180be4d015a90da44cf2581fb27ba9.zip
Made uri slightly better managed.
2000-05-01 Christopher James Lahey <clahey@helixcode.com> * backend/pas/pas-backend-file.c, backend/pas/pas-backend-ldap.c: Made uri slightly better managed. * backend/pas/pas-book-factory.c (pas_book_factory_process_request): Remove this CORBA_Object_release that causes things not to work. This is just a temporary fix until we figure out what's actually wrong. * backend/pas/pas-book.c: Fixed a copy and paste error in a warning. svn path=/trunk/; revision=2718
Diffstat (limited to 'addressbook/backend/pas/pas-backend-file.c')
-rw-r--r--addressbook/backend/pas/pas-backend-file.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/addressbook/backend/pas/pas-backend-file.c b/addressbook/backend/pas/pas-backend-file.c
index e2ca9a7348..11b5abb670 100644
--- a/addressbook/backend/pas/pas-backend-file.c
+++ b/addressbook/backend/pas/pas-backend-file.c
@@ -944,7 +944,8 @@ pas_backend_file_load_uri (PASBackend *backend,
if (pas_backend_file_maybe_upgrade_db (bf))
bf->priv->loaded = TRUE;
/* XXX what if we fail to upgrade it? */
-
+
+ g_free(bf->priv->uri);
bf->priv->uri = g_strdup (uri);
} else {
GList *l;
@@ -1096,10 +1097,7 @@ pas_backend_file_destroy (GtkObject *object)
bf = PAS_BACKEND_FILE (object);
- if (bf->priv->uri) {
- g_free (bf->priv->uri);
- bf->priv->uri = NULL;
- }
+ g_free (bf->priv->uri);
GTK_OBJECT_CLASS (pas_backend_file_parent_class)->destroy (object);
}
@@ -1132,6 +1130,7 @@ pas_backend_file_init (PASBackendFile *backend)
priv->loaded = FALSE;
priv->clients = NULL;
priv->book_views = NULL;
+ priv->uri = NULL;
backend->priv = priv;
}