mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
Merge pull request #2119 from martinetd/gcc-strtruncation
sway/criteria: gcc string truncation warning fix
This commit is contained in:
commit
acf71fe805
1 changed files with 3 additions and 1 deletions
|
@ -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