From bfe703a45888107936c184076eaead28b8b8a90a Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Tue, 3 Feb 2015 18:19:56 +0100 Subject: don't let current_thd to point to a destroyed THD * reset current_thd in THD::~THD, otherwise my_malloc_size_cb_func() might access THD after it was destroyed. * remove now redundant set_current_thd(0) calls that follow delete thd. --- sql/sql_plugin.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'sql/sql_plugin.cc') diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc index e9a0f138212..900167c1fab 100644 --- a/sql/sql_plugin.cc +++ b/sql/sql_plugin.cc @@ -1775,7 +1775,6 @@ static void plugin_load(MEM_ROOT *tmp_root) end: /* Remember that we don't have a THD */ delete new_thd; - set_current_thd(0); DBUG_VOID_RETURN; } -- cgit v1.2.1