From: Stephan Bosch Date: Sun, 5 Mar 2023 16:08:06 +0000 (+0100) Subject: auth: mech-scram - Remove pool field from mechanism request struct X-Git-Tag: 2.4.2~317 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e992832d2ba527bf247103218e237240fc37e1e6;p=thirdparty%2Fdovecot%2Fcore.git auth: mech-scram - Remove pool field from mechanism request struct --- diff --git a/src/auth/mech-scram.c b/src/auth/mech-scram.c index 3b6b31bea0..b98d8c81d8 100644 --- a/src/auth/mech-scram.c +++ b/src/auth/mech-scram.c @@ -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();