Set prop_hooks_table to NULL after freeing it.

* src/core/window-props.c:


svn path=/trunk/; revision=4103
This commit is contained in:
Thomas James Alexander Thurman
2009-02-01 20:47:33 +00:00
parent 032cbe0dd5
commit e5db44ca90
2 changed files with 8 additions and 2 deletions

View File

@ -1463,10 +1463,10 @@ void
meta_display_free_window_prop_hooks (MetaDisplay *display)
{
g_hash_table_unref (display->prop_hooks);
display->prop_hooks_table = NULL;
display->prop_hooks = NULL;
g_free (display->prop_hooks_table);
display->prop_hooks = NULL;
display->prop_hooks_table = NULL;
}
static MetaWindowPropHooks*