summaryrefslogtreecommitdiffstats
path: root/cmd-if-shell.c
diff options
context:
space:
mode:
authornicm <nicm>2019-05-25 07:15:53 +0000
committernicm <nicm>2019-05-25 07:15:53 +0000
commit6b0fa14470df848ae0735a3e0bab393c241acb86 (patch)
tree3cd50bd0cbcac6ee28030a446356a10d9038e5c2 /cmd-if-shell.c
parent930245d7ffde91464865122a82437209680458c8 (diff)
Fix error handling in if-shell.
Diffstat (limited to 'cmd-if-shell.c')
-rw-r--r--cmd-if-shell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd-if-shell.c b/cmd-if-shell.c
index 40e2b1c3..84f66657 100644
--- a/cmd-if-shell.c
+++ b/cmd-if-shell.c
@@ -159,7 +159,7 @@ cmd_if_shell_callback(struct job *job)
struct cmd_if_shell_data *cdata = job_get_data(job);
struct client *c = cdata->client;
struct mouse_event *m = &cdata->mouse;
- struct cmdq_item *new_item;
+ struct cmdq_item *new_item = NULL;
char *cmd;
int status;
struct cmd_parse_result *pr;
@@ -175,10 +175,10 @@ cmd_if_shell_callback(struct job *job)
pr = cmd_parse_from_string(cmd, &cdata->input);
switch (pr->status) {
case CMD_PARSE_EMPTY:
- new_item = NULL;
break;
case CMD_PARSE_ERROR:
- new_item = cmdq_get_error(pr->error);
+ if (cdata->item != NULL)
+ cmdq_error(cdata->item, "%s", pr->error);
free(pr->error);
break;
case CMD_PARSE_SUCCESS: