mirror of
https://github.com/swaywm/sway.git
synced 2026-06-15 14:33:54 -04:00
Use has_prefix() instead of strncmp() throughout
This is safer than hardcoded string lengths.
This commit is contained in:
parent
c55dff95bc
commit
0c60d1581f
19 changed files with 44 additions and 49 deletions
|
|
@ -300,7 +300,7 @@ struct input_config *store_input_config(struct input_config *ic,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
bool type = strncmp(ic->identifier, "type:", strlen("type:")) == 0;
|
||||
bool type = has_prefix(ic->identifier, "type:");
|
||||
if (type && error && !validate_type_on_existing(ic, error)) {
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue