mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixed new introduced bug in binlog.test with --ps-protocol
This commit is contained in:
@ -1109,6 +1109,9 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
|
||||
DBUG_ENTER("mysql_change_db");
|
||||
DBUG_PRINT("enter",("name: '%s'",name));
|
||||
|
||||
LINT_INIT(db_length);
|
||||
LINT_INIT(db_access);
|
||||
|
||||
/* dbname can only be NULL if malloc failed */
|
||||
if (!dbname || !(db_length= strlen(dbname)))
|
||||
{
|
||||
@ -1126,7 +1129,7 @@ bool mysql_change_db(THD *thd, const char *name, bool no_access_check)
|
||||
if (check_db_name(dbname))
|
||||
{
|
||||
my_error(ER_WRONG_DB_NAME, MYF(0), dbname);
|
||||
x_free(dbname);
|
||||
my_free(dbname, MYF(0));
|
||||
DBUG_RETURN(1);
|
||||
}
|
||||
DBUG_PRINT("info",("Use database: %s", dbname));
|
||||
@ -1176,8 +1179,6 @@ end:
|
||||
x_free(thd->db);
|
||||
if (dbname && dbname[0] == 0)
|
||||
{
|
||||
if (!(thd->slave_thread))
|
||||
x_free(dbname);
|
||||
thd->db= NULL;
|
||||
thd->db_length= 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user