mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-06-16 08:15:40 +02:00
modules: fix strncpy calls to ensure strings are NULL-terminated
This commit is contained in:
parent
0e3866186f
commit
a831490462
2 changed files with 2 additions and 2 deletions
|
@ -442,7 +442,7 @@ get_socket_address(struct sockaddr_un *addr)
|
|||
#endif
|
||||
}
|
||||
|
||||
strncpy(addr->sun_path, sway_sock, sizeof(addr->sun_path));
|
||||
strncpy(addr->sun_path, sway_sock, sizeof(addr->sun_path) - 1);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue