Fix small theoretical memory leaks. (#353916, Chris Wilson)
2006-09-09 Matthias Clasen <mclasen@redhat.com> * gdk/x11/gdkfonts-x11.c: Fix small theoretical memory leaks. (#353916, Chris Wilson)
This commit is contained in:
committed by
Matthias Clasen
parent
5c547a504f
commit
c9c586dd3a
@ -1,5 +1,8 @@
|
|||||||
2006-09-09 Matthias Clasen <mclasen@redhat.com>
|
2006-09-09 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gdk/x11/gdkfonts-x11.c: Fix small theoretical memory leaks.
|
||||||
|
(#353916, Chris Wilson)
|
||||||
|
|
||||||
* gtk/gtksettings.c (_gtk_settings_reset_rc_values):
|
* gtk/gtksettings.c (_gtk_settings_reset_rc_values):
|
||||||
Don't leak the to_reset list. (#353914, Chris Wilson)
|
Don't leak the to_reset list. (#353914, Chris Wilson)
|
||||||
|
|
||||||
|
|||||||
@ -67,7 +67,8 @@ gdk_font_name_hash_get (GdkDisplay *display)
|
|||||||
if (!result)
|
if (!result)
|
||||||
{
|
{
|
||||||
result = g_hash_table_new (g_str_hash, g_str_equal);
|
result = g_hash_table_new (g_str_hash, g_str_equal);
|
||||||
g_object_set_qdata (G_OBJECT (display), font_name_quark, result);
|
g_object_set_qdata_full (G_OBJECT (display),
|
||||||
|
font_name_quark, result, (GDestroyNotify) g_hash_table_destroy);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
@ -87,7 +88,8 @@ gdk_fontset_name_hash_get (GdkDisplay *display)
|
|||||||
if (!result)
|
if (!result)
|
||||||
{
|
{
|
||||||
result = g_hash_table_new (g_str_hash, g_str_equal);
|
result = g_hash_table_new (g_str_hash, g_str_equal);
|
||||||
g_object_set_qdata (G_OBJECT (display), fontset_name_quark, result);
|
g_object_set_qdata_full (G_OBJECT (display),
|
||||||
|
fontset_name_quark, result, (GDestroyNotify) g_hash_table_destroy);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
Reference in New Issue
Block a user