ITS#9052 zero out sasl_ssf in connection_init

This commit is contained in:
Howard Chu 2019-07-10 21:29:39 +01:00
parent 15137bf76f
commit 0fa0f8ff07

View File

@ -535,7 +535,7 @@ Connection * connection_init(
c->c_close_reason = "?"; /* should never be needed */
c->c_ssf = c->c_transport_ssf = ssf;
c->c_tls_ssf = 0;
c->c_tls_ssf = c->c_sasl_ssf = 0;
#ifdef HAVE_TLS
if ( flags & CONN_IS_TLS ) {