From: Dana Jansens Date: Sat, 25 Oct 2003 19:14:10 +0000 (+0000) Subject: free the GError X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=91de569e694668ab2a9e9457a1878b6d7fdd7858;p=chaz%2Fopenbox free the GError --- 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 {