diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/evolution-storage.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index cd557caca8..1bec9c547d 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 2001-05-04 Ettore Perazzoli <ettore@ximian.com> + * evolution-storage.c (evolution_storage_new_folder): Ooops. The + `corba_folder' is needed after returning; don't free it. + +2001-05-04 Ettore Perazzoli <ettore@ximian.com> + * evolution-storage.c (evolution_storage_new_folder): Free the `corba_folder' when not needed anymore. diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c index 48fdae5fc5..68cbf0c7f3 100644 --- a/shell/evolution-storage.c +++ b/shell/evolution-storage.c @@ -731,8 +731,6 @@ evolution_storage_new_folder (EvolutionStorage *evolution_storage, break; } - CORBA_free (corba_folder); - CORBA_exception_free (&ev); return result; |