mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
WL#2936
Move copying of global variables into thd.variables into plugin_thdvar_init(). plugin_thdvar_init() may be called multiple times when THD::change_user() is called. This fixes a plugin ref-count leak when running the test mysql_client_test sql/sql_class.cc: wl2936 Initialize thd.variables to zero in constructor. Move copying of global variables into thd.variables into plugin_thdvar_init() sql/sql_plugin.cc: wl2936 Move copying of global variables into thd.variables into plugin_thdvar_init(). plugin_thdvar_init() may be called multiple times when THD::change_user() is called. This fixes a plugin ref-count leak when running the test mysql_client_test
This commit is contained in:
@ -2303,14 +2303,26 @@ static byte *mysql_sys_var_ptr(void* a_thd, int offset)
|
||||
|
||||
void plugin_thdvar_init(THD *thd)
|
||||
{
|
||||
plugin_ref old_table_plugin= thd->variables.table_plugin;
|
||||
DBUG_ENTER("plugin_thdvar_init");
|
||||
|
||||
thd->variables.table_plugin= NULL;
|
||||
cleanup_variables(thd, &thd->variables);
|
||||
|
||||
thd->variables= global_system_variables;
|
||||
thd->variables.table_plugin= NULL;
|
||||
|
||||
/* we are going to allocate these lazily */
|
||||
thd->variables.dynamic_variables_version= 0;
|
||||
thd->variables.dynamic_variables_size= 0;
|
||||
thd->variables.dynamic_variables_ptr= 0;
|
||||
|
||||
DBUG_ASSERT(!(thd->variables.table_plugin));
|
||||
pthread_mutex_lock(&LOCK_plugin);
|
||||
thd->variables.table_plugin=
|
||||
my_plugin_lock(NULL, &global_system_variables.table_plugin);
|
||||
my_intern_plugin_lock(NULL, global_system_variables.table_plugin);
|
||||
intern_plugin_unlock(NULL, old_table_plugin);
|
||||
pthread_mutex_unlock(&LOCK_plugin);
|
||||
DBUG_VOID_RETURN;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user