Remove some unnecessary assignments.

This commit is contained in:
nicm
2025-09-09 08:49:22 +00:00
parent b21b1ee9af
commit 50dafd6187
4 changed files with 3 additions and 8 deletions

View File

@@ -425,7 +425,7 @@ void
server_destroy_session(struct session *s)
{
struct client *c;
struct session *s_new = NULL, *cs_new, *use_s;
struct session *s_new = NULL, *cs_new = NULL, *use_s;
int detach_on_destroy;
detach_on_destroy = options_get_number(s->options, "detach-on-destroy");