commit 32caabc7a172552a35358d7cde89790ebfa96d48 parent 354e705a7be9158c6dd14bb4f9751023e2e974b8 Author: lbonn <bonnans.l@gmail.com> Date: Sat, 7 Sep 2019 21:52:48 +0200 seat: simplify a strdup Diffstat:
| M | sway/input/seat.c | | | 5 | +---- |
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/sway/input/seat.c b/sway/input/seat.c @@ -905,12 +905,9 @@ static void set_workspace(struct sway_seat *seat, if (seat->workspace) { free(seat->prev_workspace_name); - seat->prev_workspace_name = malloc(strlen(seat->workspace->name) + 1); + seat->prev_workspace_name = strdup(seat->workspace->name); if (!seat->prev_workspace_name) { sway_log(SWAY_ERROR, "Unable to allocate previous workspace name"); - seat->prev_workspace_name = NULL; - } else { - strcpy(seat->prev_workspace_name, seat->workspace->name); } }