From a9a8c3a3848ef0e4a78c5b7c0b8bb9dce849c3cc Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Sat, 25 Nov 2000 07:31:24 +0000 Subject: Plug leaks of the fullname and fulldefaultname. 2000-11-25 Federico Mena Quintero * 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 --- shell/evolution-local-storage.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'shell/evolution-local-storage.c') diff --git a/shell/evolution-local-storage.c b/shell/evolution-local-storage.c index cec05b91fc..c0e900087b 100644 --- a/shell/evolution-local-storage.c +++ b/shell/evolution-local-storage.c @@ -121,7 +121,8 @@ corba_class_init (void) base_epv->default_POA = NULL; vepv = &LocalStorage_vepv; - vepv->Bonobo_Unknown_epv = bonobo_object_get_epv (); + vepv->_base_epv = base_epv; + vepv->Bonobo_Unknown_epv = bonobo_object_get_epv (); vepv->GNOME_Evolution_Storage_epv = evolution_storage_get_epv (); vepv->GNOME_Evolution_LocalStorage_epv = evolution_local_storage_get_epv (); } -- cgit