1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-30 08:34:14 +01:00
All variables without a $ prefix lost their last character due to off by one error
This commit is contained in:
Jonas Karlsson 2017-10-03 21:51:02 +02:00
parent a4e3b4fd7b
commit 05aeccfca0

View file

@ -30,7 +30,7 @@ struct cmd_results *cmd_set(int argc, char **argv) {
if (!tmp) {
return cmd_results_new(CMD_FAILURE, "set", "Not possible to create variable $'%s'", argv[0]);
}
snprintf(tmp, size, "$%s", argv[0]);
snprintf(tmp, size+1, "$%s", argv[0]);
argv[0] = tmp;
}