1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-28 09:56:30 +02:00

Fix snprintf compiler warning

This commit is contained in:
Muhamed Hobi 2022-02-07 19:03:54 -05:00 committed by Simon Ser
parent 9a6687ee04
commit ac7892371c
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ struct cmd_results *output_cmd_background(int argc, char **argv) {
"Unable to allocate resources");
}
sprintf(src, "%s/%s", conf_path, rel_path);
snprintf(src, strlen(conf_path) + strlen(src) + 2, "%s/%s", conf_path, rel_path);
free(rel_path);
free(conf);
}

View File

@ -214,7 +214,7 @@ bool server_init(struct sway_server *server) {
// Avoid using "wayland-0" as display socket
char name_candidate[16];
for (int i = 1; i <= 32; ++i) {
sprintf(name_candidate, "wayland-%d", i);
snprintf(name_candidate, sizeof(name_candidate), "wayland-%d", i);
if (wl_display_add_socket(server->wl_display, name_candidate) >= 0) {
server->socket = strdup(name_candidate);
break;