From 71b3e46b0160936596195682a731703900fb4fff Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 12 Mar 2010 20:05:21 +0100 Subject: 1. don't crash on failing to load a plugin with newer MYSQL_PLUGIN_INTERFACE_VERSION 2. don't copy st_mysql_plugin structure unnecessary (sizeof hasn't changed) --- sql/sql_plugin.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sql/sql_plugin.h') diff --git a/sql/sql_plugin.h b/sql/sql_plugin.h index 54ef38b3734..79ee296ac64 100644 --- a/sql/sql_plugin.h +++ b/sql/sql_plugin.h @@ -63,7 +63,8 @@ struct st_plugin_dl LEX_STRING dl; void *handle; struct st_mysql_plugin *plugins; - int version; + int version; + bool allocated; uint ref_count; /* number of plugins loaded from the library */ }; -- cgit v1.2.1