mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge of mysql-trunk-bugfixing into mysql-trunk-merge.
This commit is contained in:
@ -216,7 +216,7 @@ int Trans_delegate::after_commit(THD *thd, bool all)
|
||||
if (is_real_trans && log_info)
|
||||
{
|
||||
my_pthread_setspecific_ptr(RPL_TRANS_BINLOG_INFO, NULL);
|
||||
my_free(log_info, MYF(0));
|
||||
my_free(log_info);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
@ -244,7 +244,7 @@ int Trans_delegate::after_rollback(THD *thd, bool all)
|
||||
if (is_real_trans && log_info)
|
||||
{
|
||||
my_pthread_setspecific_ptr(RPL_TRANS_BINLOG_INFO, NULL);
|
||||
my_free(log_info, MYF(0));
|
||||
my_free(log_info);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user