aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-08-20 23:22:26 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-08-20 23:22:26 +0800
commit6a6f3d83e9140cd54f1dfec2a16156ba4e77e892 (patch)
tree918f36f6c9a3d7854845e0946752d7a1da1eaffe /addressbook
parent758d940b11b259dd3592e77a19c4f4c393fe45da (diff)
downloadgsoc2013-evolution-6a6f3d83e9140cd54f1dfec2a16156ba4e77e892.tar
gsoc2013-evolution-6a6f3d83e9140cd54f1dfec2a16156ba4e77e892.tar.gz
gsoc2013-evolution-6a6f3d83e9140cd54f1dfec2a16156ba4e77e892.tar.bz2
gsoc2013-evolution-6a6f3d83e9140cd54f1dfec2a16156ba4e77e892.tar.lz
gsoc2013-evolution-6a6f3d83e9140cd54f1dfec2a16156ba4e77e892.tar.xz
gsoc2013-evolution-6a6f3d83e9140cd54f1dfec2a16156ba4e77e892.tar.zst
gsoc2013-evolution-6a6f3d83e9140cd54f1dfec2a16156ba4e77e892.zip
null out card_sexp so that we don't crash when copying
2001-08-20 JP Rosevear <jpr@ximian.com> * backend/pas/pas-backend-file.c (pas_backend_file_process_get_changes): null out card_sexp so that we don't crash when copying svn path=/trunk/; revision=12290
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/backend/pas/pas-backend-file.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 31568a82da..9b86d049eb 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,11 @@
2001-08-20 JP Rosevear <jpr@ximian.com>
+ * backend/pas/pas-backend-file.c
+ (pas_backend_file_process_get_changes): null out card_sexp so that
+ we don't crash when copying
+
+2001-08-20 JP Rosevear <jpr@ximian.com>
+
* conduit/address-conduit.c: fix warnings, get compiling again
* conduit/address-conduit-config.h: remove c/p typos
diff --git a/addressbook/backend/pas/pas-backend-file.c b/addressbook/backend/pas/pas-backend-file.c
index 872d7ba378..1942400d09 100644
--- a/addressbook/backend/pas/pas-backend-file.c
+++ b/addressbook/backend/pas/pas-backend-file.c
@@ -893,7 +893,8 @@ pas_backend_file_process_get_changes (PASBackend *backend,
ctx.mod_ids = NULL;
ctx.del_ids = NULL;
view.search = NULL;
-
+ view.card_sexp = NULL;
+
e_list_append(bf->priv->book_views, &view);
iterator = e_list_get_iterator(bf->priv->book_views);