diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-11-25 15:31:24 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-11-25 15:31:24 +0800 |
commit | a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc (patch) | |
tree | aede2be05c35803aaaf54e43643150d0fbe67835 /shell/evolution-storage.c | |
parent | 17e51fc56112e8fd002d32b5d22c2684cce2fb9a (diff) | |
download | gsoc2013-evolution-a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc.tar gsoc2013-evolution-a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc.tar.gz gsoc2013-evolution-a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc.tar.bz2 gsoc2013-evolution-a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc.tar.lz gsoc2013-evolution-a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc.tar.xz gsoc2013-evolution-a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc.tar.zst gsoc2013-evolution-a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc.zip |
Plug leaks of the fullname and fulldefaultname.
2000-11-25 Federico Mena Quintero <federico@helixcode.com>
* e-setup.c (check_dir_recur): Plug leaks of the fullname and
fulldefaultname.
(check_evolution_directory): Plug leaks of defaultdir and newfiles
and the list's data; made the code have a single return point.
* e-shell.c (e_shell_restore_from_settings): Plug leak of prefix.
(corba_class_init): Plug leak; we were not assigning the
vepv->_base_epv.
* evolution-storage.c (corba_class_init): Likewise.
* evolution-local-storage.c (corba_class_init): Likewise.
svn path=/trunk/; revision=6667
Diffstat (limited to 'shell/evolution-storage.c')
-rw-r--r-- | shell/evolution-storage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c index 49b7b36805..d16d7f88c5 100644 --- a/shell/evolution-storage.c +++ b/shell/evolution-storage.c @@ -311,6 +311,7 @@ corba_class_init (void) base_epv->default_POA = NULL; vepv = &Storage_vepv; + vepv->_base_epv = base_epv; vepv->Bonobo_Unknown_epv = bonobo_object_get_epv (); vepv->GNOME_Evolution_Storage_epv = evolution_storage_get_epv (); } |