initialize the action shutdown function to NULL

This commit is contained in:
Dana Jansens 2010-02-11 14:58:53 -05:00
parent 5b6f3c6f7a
commit 6c760c5a63

View file

@ -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;