Skip to content

Commit

Permalink
lib-auth: Fix reconnect timeout leak at deinit
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Jul 8, 2018
1 parent 899bf49 commit cbb091c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib-auth/auth-server-connection.c
Expand Up @@ -406,6 +406,7 @@ void auth_server_connection_deinit(struct auth_server_connection **_conn)
auth_server_connection_disconnect(conn, "deinitializing");
i_assert(hash_table_count(conn->requests) == 0);
hash_table_destroy(&conn->requests);
timeout_remove(&conn->to);
array_free(&conn->available_auth_mechs);
pool_unref(&conn->pool);
}
Expand Down

0 comments on commit cbb091c

Please sign in to comment.