diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-02-03 18:19:56 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-02-03 18:19:56 +0100 |
commit | bfe703a45888107936c184076eaead28b8b8a90a (patch) | |
tree | 183080fb1f6665badce232171ec4423927bbaec8 /sql/sql_udf.cc | |
parent | d0fb9580e0b2400d633b672e881a9d661cafb07f (diff) | |
download | mariadb-git-bfe703a45888107936c184076eaead28b8b8a90a.tar.gz |
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.
Diffstat (limited to 'sql/sql_udf.cc')
-rw-r--r-- | sql/sql_udf.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/sql_udf.cc b/sql/sql_udf.cc index 2354f120041..d266e8f6bc7 100644 --- a/sql/sql_udf.cc +++ b/sql/sql_udf.cc @@ -258,8 +258,6 @@ void udf_init() end: close_mysql_tables(new_thd); delete new_thd; - /* Remember that we don't have a THD */ - set_current_thd(0); DBUG_VOID_RETURN; } |