Commit f6f469a6 authored by unknown's avatar unknown

Fix valgrind warning from deinitializing ha_ndbcluster, referencing

another handler from 'plugin_foreach'


sql/sql_plugin.cc:
  Remove plugin from plugin_array after it has been initialized to 
  avoid it being referenced. For example if a plugin deletes a THD object
  that will call 'ha_close_connection' wich will iterate over all storage
  engine plugins
parent b9741216
......@@ -804,6 +804,7 @@ void plugin_shutdown(void)
struct st_plugin_int *tmp= dynamic_element(&plugin_array, i,
struct st_plugin_int *);
plugin_deinitialize(tmp);
plugin_del(tmp);
}
......
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