mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Fix gcc string truncation warnings
This commit is contained in:
parent
54ae394754
commit
25af959fe9
4 changed files with 4 additions and 4 deletions
|
@ -48,7 +48,7 @@ int ipc_open_socket(const char *socket_path) {
|
|||
sway_abort("Unable to open Unix socket");
|
||||
}
|
||||
addr.sun_family = AF_UNIX;
|
||||
strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path));
|
||||
strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path) - 1);
|
||||
addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
|
||||
int l = sizeof(struct sockaddr_un);
|
||||
if (connect(socketfd, (struct sockaddr *)&addr, l) == -1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue