mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
commands: Fix memory allocation in assign
Also use the safer snprintf since we just computed the size. Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
parent
43483d8fee
commit
449617f104
@ -177,10 +177,10 @@ static struct cmd_results *cmd_assign(int argc, char **argv) {
|
||||
}
|
||||
|
||||
char *movecmd = "move container to workspace ";
|
||||
int arglen = strlen(*argv);
|
||||
char *cmdlist = calloc(1, sizeof(movecmd) + arglen);
|
||||
int arglen = strlen(movecmd) + strlen(*argv) + 1;
|
||||
char *cmdlist = calloc(1, arglen);
|
||||
|
||||
sprintf(cmdlist, "%s%s", movecmd, *argv);
|
||||
snprintf(cmdlist, arglen, "%s%s", movecmd, *argv);
|
||||
|
||||
struct criteria *crit = malloc(sizeof(struct criteria));
|
||||
crit->crit_raw = strdup(criteria);
|
||||
|
Loading…
Reference in New Issue
Block a user