From: Dana Jansens Date: Thu, 11 Feb 2010 19:58:53 +0000 (-0500) Subject: initialize the action shutdown function to NULL X-Git-Tag: release-3.5.1~344 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=6c760c5a63a2e49bc2a5a4f39f8b4b9ed285bd7e;p=mikachu%2Fopenbox.git initialize the action shutdown function to NULL --- diff --git a/openbox/actions.c b/openbox/actions.c index 2c60ba40..945233e6 100644 --- a/openbox/actions.c +++ b/openbox/actions.c @@ -107,6 +107,7 @@ ObActionsDefinition* do_register(const gchar *name, def->name = g_strdup(name); def->free = free; def->run = run; + def->shutdown = NULL; registered = g_slist_prepend(registered, def); return def;