diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-02-02 23:55:19 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-02-02 23:55:19 +0800 |
commit | 2e6566611d5bd15f792bc7872959a4b625382cab (patch) | |
tree | 525150689cb128390ada3ddbeaef1b58805962ba /my-evolution/e-summary-offline-handler.c | |
parent | 90a263ce5050d3e54df20212178320585385395f (diff) | |
download | gsoc2013-evolution-2e6566611d5bd15f792bc7872959a4b625382cab.tar gsoc2013-evolution-2e6566611d5bd15f792bc7872959a4b625382cab.tar.gz gsoc2013-evolution-2e6566611d5bd15f792bc7872959a4b625382cab.tar.bz2 gsoc2013-evolution-2e6566611d5bd15f792bc7872959a4b625382cab.tar.lz gsoc2013-evolution-2e6566611d5bd15f792bc7872959a4b625382cab.tar.xz gsoc2013-evolution-2e6566611d5bd15f792bc7872959a4b625382cab.tar.zst gsoc2013-evolution-2e6566611d5bd15f792bc7872959a4b625382cab.zip |
Allocate the ConnectionList list with the right number of entries instead
* e-summary-offline-handler.c (create_connection_list): Allocate
the ConnectionList list with the right number of entries instead
of zero.
svn path=/trunk/; revision=15552
Diffstat (limited to 'my-evolution/e-summary-offline-handler.c')
-rw-r--r-- | my-evolution/e-summary-offline-handler.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/my-evolution/e-summary-offline-handler.c b/my-evolution/e-summary-offline-handler.c index da54180981..a9163b578e 100644 --- a/my-evolution/e-summary-offline-handler.c +++ b/my-evolution/e-summary-offline-handler.c @@ -69,11 +69,12 @@ create_connection_list (GSList *summaries) list = GNOME_Evolution_ConnectionList__alloc (); list->_length = 0; list->_maximum = 0; - list->_buffer = CORBA_sequence_GNOME_Evolution_Connection_allocbuf (list->_maximum); /* Count the total number of connections first to make CORBA happy. */ for (sp = summaries; sp != NULL; sp = sp->next) - list->_maximum += e_summary_count_connections (E_SUMMARY (sp->data)) + 1; + list->_maximum += e_summary_count_connections (E_SUMMARY (sp->data)); + + list->_buffer = CORBA_sequence_GNOME_Evolution_Connection_allocbuf (list->_maximum); for (sp = summaries; sp != NULL; sp = sp->next) { ESummary *summary; |