1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

MDEV-25977 : Warning: Memory not freed: 32 on SET GLOBAL wsrep_sst_auth=USER

Add missing wsrep_sst_auth_free call.
This commit is contained in:
Jan Lindström
2022-01-11 14:37:30 +02:00
parent cf3adaaa9e
commit f43ef9ba3a

View File

@@ -1763,6 +1763,7 @@ static void close_connections(void)
{ {
wsrep_deinit(true); wsrep_deinit(true);
} }
wsrep_sst_auth_free();
#endif #endif
/* All threads has now been aborted */ /* All threads has now been aborted */
DBUG_PRINT("quit", ("Waiting for threads to die (count=%u)", THD_count::value())); DBUG_PRINT("quit", ("Waiting for threads to die (count=%u)", THD_count::value()));