aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorChristoph Gysin <christoph.gysin@gmail.com>2015-11-29 15:46:30 +0200
committerChristoph Gysin <christoph.gysin@gmail.com>2015-11-29 22:36:17 +0200
commit3c8763af22b3ffe0a281b5a6d9a018f952238ff4 (patch)
tree9c6212ef9690ed3328cd3a7671bf3bbbfe01f3df /sway
parent82d464bb90af7fed57a36aacc2dce22994849bac (diff)
cmd_output: check for missing subcommand arguments
Diffstat (limited to 'sway')
-rw-r--r--sway/commands.c21
1 files changed, 16 insertions, 5 deletions
diff --git a/sway/commands.c b/sway/commands.c
index ba42a9ae..d6ee4553 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -722,7 +722,6 @@ static struct cmd_results *cmd_output(int argc, char **argv) {
output->enabled = true;
// TODO: atoi doesn't handle invalid numbers
- // TODO: Check missing params after each sub-command
int i;
for (i = 1; i < argc; ++i) {
@@ -731,7 +730,10 @@ static struct cmd_results *cmd_output(int argc, char **argv) {
if (strcasecmp(command, "disable") == 0) {
output->enabled = false;
} else if (strcasecmp(command, "resolution") == 0 || strcasecmp(command, "res") == 0) {
- char *res = argv[++i];
+ if (++i >= argc) {
+ return cmd_results_new(CMD_INVALID, "output", "Missing resolution argument.");
+ }
+ char *res = argv[i];
char *x = strchr(res, 'x');
int width = -1, height = -1;
if (x != NULL) {
@@ -743,13 +745,19 @@ static struct cmd_results *cmd_output(int argc, char **argv) {
} else {
// Format is 1234 4321
width = atoi(res);
- res = argv[++i];
+ if (++i >= argc) {
+ return cmd_results_new(CMD_INVALID, "output", "Missing resolution argument (height).");
+ }
+ res = argv[i];
height = atoi(res);
}
output->width = width;
output->height = height;
} else if (strcasecmp(command, "position") == 0 || strcasecmp(command, "pos") == 0) {
- char *res = argv[++i];
+ if (++i >= argc) {
+ return cmd_results_new(CMD_INVALID, "output", "Missing position argument.");
+ }
+ char *res = argv[i];
char *c = strchr(res, ',');
int x = -1, y = -1;
if (c != NULL) {
@@ -761,7 +769,10 @@ static struct cmd_results *cmd_output(int argc, char **argv) {
} else {
// Format is 1234 4321
x = atoi(res);
- res = argv[++i];
+ if (++i >= argc) {
+ return cmd_results_new(CMD_INVALID, "output", "Missing position argument (y).");
+ }
+ res = argv[i];
y = atoi(res);
}
output->x = x;