]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: mech-scram - Remove pool field from mechanism request struct
authorStephan Bosch <stephan.bosch@open-xchange.com>
Sun, 5 Mar 2023 16:08:06 +0000 (17:08 +0100)
committertimo.sirainen <timo.sirainen@open-xchange.com>
Thu, 9 Oct 2025 08:41:22 +0000 (08:41 +0000)
src/auth/mech-scram.c

index 3b6b31bea09c4c9e84e64484691f33fdf4e1887a..b98d8c81d8010d47f1ce73148cb80d243d3f61f6 100644 (file)
@@ -10,7 +10,6 @@
 struct scram_auth_request {
        struct auth_request auth_request;
 
-       pool_t pool;
        const char *password_scheme;
 
        struct auth_scram_server scram_server;
@@ -176,7 +175,6 @@ mech_scram_auth_new(const struct hash_method *hash_method,
 
        pool = pool_alloconly_create(MEMPOOL_GROWING"scram_auth_request", 2048);
        request = p_new(pool, struct scram_auth_request, 1);
-       request->pool = pool;
        request->password_scheme = password_scheme;
 
        struct auth *auth = auth_default_protocol();