diff options
-rw-r--r-- | cmds/installd/installd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmds/installd/installd.c b/cmds/installd/installd.c index 509909db09..7caa146546 100644 --- a/cmds/installd/installd.c +++ b/cmds/installd/installd.c @@ -255,7 +255,9 @@ static int execute(int s, char cmd[BUFFER_MAX]) goto done; } } - cmd++; + if (*cmd) { + cmd++; + } } for (i = 0; i < sizeof(cmds) / sizeof(cmds[0]); i++) { |