diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-01-17 01:56:22 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-01-17 01:56:22 +0800 |
commit | 82cb9e15be22f43794345c93cbbef1bf0da06158 (patch) | |
tree | db2d4f6d5bde131dcadbe7ee4c6a3c03a3b661db /my-evolution/e-summary-offline-handler.c | |
parent | 95de7c6dc800504a12b6fc7557e282e646250422 (diff) | |
download | gsoc2013-evolution-82cb9e15be22f43794345c93cbbef1bf0da06158.tar.gz gsoc2013-evolution-82cb9e15be22f43794345c93cbbef1bf0da06158.tar.zst gsoc2013-evolution-82cb9e15be22f43794345c93cbbef1bf0da06158.zip |
Use soup to transfer HTTP files and other bugs fixed
svn path=/trunk/; revision=15344
Diffstat (limited to 'my-evolution/e-summary-offline-handler.c')
-rw-r--r-- | my-evolution/e-summary-offline-handler.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/my-evolution/e-summary-offline-handler.c b/my-evolution/e-summary-offline-handler.c index 90f45e9ced..d03bf0eb32 100644 --- a/my-evolution/e-summary-offline-handler.c +++ b/my-evolution/e-summary-offline-handler.c @@ -100,6 +100,11 @@ impl_prepareForOffline (PortableServer_Servant servant, if (priv->summary != NULL) { *active_connection_list = e_summary_offline_handler_create_connection_list (priv->summary); + } else { + *active_connection_list = GNOME_Evolution_ConnectionList__alloc (); + (*active_connection_list)->_length = 0; + (*active_connection_list)->_maximum = 0; + (*active_connection_list)->_buffer = CORBA_sequence_GNOME_Evolution_Connection_allocbuf (0); } } |