summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-10-25 19:14:10 +0000
committerDana Jansens <danakj@orodu.net>2003-10-25 19:14:10 +0000
commit91de569e694668ab2a9e9457a1878b6d7fdd7858 (patch)
tree6a8eb353ecd42e5ecb464a31e767c4fc1c9ba699 /openbox
parent5cadc1bff5a26497df28f38e7e9b74d81dfa1084 (diff)
free the GError
Diffstat (limited to 'openbox')
-rw-r--r--openbox/action.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/openbox/action.c b/openbox/action.c
index c07fa162..4ea50fe5 100644
--- a/openbox/action.c
+++ b/openbox/action.c
@@ -985,6 +985,7 @@ void action_execute(union ActionData *data)
if (!g_spawn_command_line_async(cmd, &e)) {
g_warning("failed to execute '%s': %s",
cmd, e->message);
+ g_error_free(e);
}
g_free(cmd);
} else {