Fix mem leak. Bug #505556.

svn path=/trunk/; revision=19240
This commit is contained in:
Christian Persch
2007-12-25 16:57:25 +00:00
parent dec726cbd7
commit 7c23519a56
2 changed files with 8 additions and 2 deletions

View File

@ -1,14 +1,18 @@
2007-12-22 Christian Persch <chpe@gnome.org> 2007-12-22 Christian Persch <chpe@gnome.org>
* modules/other/gail/gailitem.c: Fix mem leak. Bug #505556.
2007-12-25 Christian Persch <chpe@gnome.org>
* modules/other/gail/gailwindow.c: (gail_window_initialize): * modules/other/gail/gailwindow.c: (gail_window_initialize):
Initialise |widget|. Fixes a buglet introduced by the commit from bug Initialise |widget|. Fixes a buglet introduced by the commit from bug
#505226. #505226.
2007-12-22 Christian Persch <chpe@gnome.org> 2007-12-25 Christian Persch <chpe@gnome.org>
* modules/other/gail/*.h: Use G_BEGIN_DECLS/G_END_DECLS. Bug #505268. * modules/other/gail/*.h: Use G_BEGIN_DECLS/G_END_DECLS. Bug #505268.
2007-12-22 Christian Persch <chpe@gnome.org> 2007-12-25 Christian Persch <chpe@gnome.org>
* modules/other/gail/*.[ch]: Remove relocations from the atk * modules/other/gail/*.[ch]: Remove relocations from the atk
factories. Remove unused gail_foo_new() functions. Fix object factories. Remove unused gail_foo_new() functions. Fix object

View File

@ -275,6 +275,8 @@ gail_item_get_name (AtkObject *obj)
g_value_unset (&value); g_value_unset (&value);
break; break;
} }
g_value_unset (&value);
} }
} }
name = item->text; name = item->text;