From e5db44ca907d2724d4b6bb2d966c7f595883352c Mon Sep 17 00:00:00 2001 From: Thomas James Alexander Thurman Date: Sun, 1 Feb 2009 20:47:33 +0000 Subject: [PATCH] Set prop_hooks_table to NULL after freeing it. * src/core/window-props.c: svn path=/trunk/; revision=4103 --- ChangeLog | 6 ++++++ src/core/window-props.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0be74c85d..d6ca63b3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-02-01 Matt Kraai + + Set prop_hooks_table to NULL after freeing it. + + * src/core/window-props.c: + 2009-01-29 Thomas Thurman Window properties are looked up in a hash table rather than diff --git a/src/core/window-props.c b/src/core/window-props.c index 478555375..2ef3597a5 100644 --- a/src/core/window-props.c +++ b/src/core/window-props.c @@ -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*