Commit a1e2ca05 authored by Jan Lindström's avatar Jan Lindström

MDEV-26030 : Warning: Memory not freed: 32 on setting wsrep_sst_auth

Call to wsrep_sst_auth_free() was missing from normal shutdown.
parent 64318620
...@@ -1900,6 +1900,7 @@ static void mysqld_exit(int exit_code) ...@@ -1900,6 +1900,7 @@ static void mysqld_exit(int exit_code)
wait_for_signal_thread_to_end(); wait_for_signal_thread_to_end();
#ifdef WITH_WSREP #ifdef WITH_WSREP
wsrep_deinit_server(); wsrep_deinit_server();
wsrep_sst_auth_free();
#endif /* WITH_WSREP */ #endif /* WITH_WSREP */
mysql_audit_finalize(); mysql_audit_finalize();
clean_up_mutexes(); clean_up_mutexes();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment