mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
commands/move: Fix crash when pos_y is omitted
Fixes #6737
(cherry picked from commit 1bf1d84b75
)
This commit is contained in:
parent
828a9a3cfb
commit
3ab1c7f153
|
@ -874,6 +874,10 @@ static struct cmd_results *cmd_move_to_position(int argc, char **argv) {
|
|||
return cmd_results_new(CMD_INVALID, "Invalid x position specified");
|
||||
}
|
||||
|
||||
if (argc < 1) {
|
||||
return cmd_results_new(CMD_FAILURE, expected_position_syntax);
|
||||
}
|
||||
|
||||
struct movement_amount ly = { .amount = 0, .unit = MOVEMENT_UNIT_INVALID };
|
||||
// Y direction
|
||||
num_consumed_args = parse_movement_amount(argc, argv, &ly);
|
||||
|
|
Loading…
Reference in a new issue