diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-02-11 14:58:53 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-02-11 14:58:53 -0500 |
| commit | 6c760c5a63a2e49bc2a5a4f39f8b4b9ed285bd7e (patch) | |
| tree | 11125c03a65c389f2ac56bb73211440fe2c09282 | |
| parent | 5b6f3c6f7a0e4f1efe3c90865226f02ffa03ca9e (diff) | |
initialize the action shutdown function to NULL
| -rw-r--r-- | openbox/actions.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
