summaryrefslogtreecommitdiffstats
path: root/input/ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'input/ipc.c')
-rw-r--r--input/ipc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/input/ipc.c b/input/ipc.c
index 64c4bac87b..a64be27de3 100644
--- a/input/ipc.c
+++ b/input/ipc.c
@@ -557,8 +557,10 @@ static void *client_thread(void *p)
json_skip_whitespace(&line0);
- char *reply_msg;
- if (line0[0] == '{') {
+ char *reply_msg = NULL;
+ if (line0[0] == '\0' || line0[0] == '#') {
+ // skip
+ } else if (line0[0] == '{') {
reply_msg = json_execute_command(arg, tmp, line0);
} else {
reply_msg = text_execute_command(arg, tmp, line0);