mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
fixed double-free bug in COM_CHANGE_USER
This commit is contained in:
parent
ed62ee1c74
commit
f028989bad
1 changed files with 1 additions and 1 deletions
|
@ -793,6 +793,7 @@ bool do_command(THD *thd)
|
|||
char *save_user= thd->user;
|
||||
char *save_priv_user= thd->priv_user;
|
||||
char *save_db= thd->db;
|
||||
thd->user=0;
|
||||
|
||||
if ((uint) ((uchar*) db - net->read_pos) > packet_length)
|
||||
{ // Check if protocol is ok
|
||||
|
@ -802,7 +803,6 @@ bool do_command(THD *thd)
|
|||
if (check_user(thd, COM_CHANGE_USER, user, passwd, db, 0))
|
||||
{ // Restore old user
|
||||
x_free(thd->user);
|
||||
x_free(thd->db);
|
||||
thd->master_access=save_master_access;
|
||||
thd->db_access=save_db_access;
|
||||
thd->db=save_db;
|
||||
|
|
Loading…
Add table
Reference in a new issue