mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 09:51:29 +00:00
sway/criteria: gcc string truncation warning fix
This commit is contained in:
parent
bf6ca69ae8
commit
720313e185
|
@ -472,7 +472,9 @@ struct criteria *criteria_parse(char *raw, char **error_arg) {
|
|||
++head;
|
||||
}
|
||||
name = calloc(head - namestart + 1, 1);
|
||||
strncpy(name, namestart, head - namestart);
|
||||
if (head != namestart) {
|
||||
strncpy(name, namestart, head - namestart);
|
||||
}
|
||||
// Parse token value
|
||||
skip_spaces(&head);
|
||||
value = NULL;
|
||||
|
|
Loading…
Reference in a new issue