From cc37250a76472de4021bdfb395a17a9e736aecf6 Mon Sep 17 00:00:00 2001 From: Oleksandr Byelkin Date: Thu, 25 Jul 2019 16:36:32 +0200 Subject: [PATCH] Backslash added to wrong cachacters of names of client plugin. --- sql-common/client_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql-common/client_plugin.c b/sql-common/client_plugin.c index 812cefe03f5..89504fb12c6 100644 --- a/sql-common/client_plugin.c +++ b/sql-common/client_plugin.c @@ -363,7 +363,7 @@ mysql_load_plugin_v(MYSQL *mysql, const char *name, int type, mysql->options.extension->plugin_dir : PLUGINDIR, "/", name, SO_EXT, NullS); - if (strpbrk(name, "()[]!@#$%^&/*;.,'?")) + if (strpbrk(name, "()[]!@#$%^&/*;.,'?\\")) { errmsg= "invalid plugin name"; goto err;