commit 38a1628a76e22220e18ece7ee82ac45421d9b42f
parent c3fc0d446f64ef7f46bc2a152cd68331de4410d0
Author: Tony Crisci <tony@dubstepdish.com>
Date: Sun, 21 Jan 2018 14:21:32 -0500
clear handler context before ipc command
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
@@ -335,6 +335,7 @@ void ipc_client_handle_command(struct ipc_client *client) {
switch (client->current_command) {
case IPC_COMMAND:
{
+ config_clear_handler_context(config);
struct cmd_results *results = handle_command(buf);
const char *json = cmd_results_to_json(results);
char reply[256];