Jinoh Kang (@iamahuman) commented about server/window.c:
win->nb_extra_bytes = extra_bytes; } if (!(win->handle = alloc_user_handle( win, USER_WINDOW ))) goto failed;
- else win->last_active = win->handle;
Avoid `else` if the `then` branch ends with a return/goto/noreturn.
```suggestion:-0+0 win->last_active = win->handle; ```