Bug #31517: Potential crash due to access of NULL thd in mark_transaction_to_rollback()

Introduced in mark_transaction_to_rollback(), part of fix for bug 24989;
fix is to check thd for NULL before using it.
parent e2bfd46b
...@@ -2241,8 +2241,11 @@ void THD::restore_sub_statement_state(Sub_statement_state *backup) ...@@ -2241,8 +2241,11 @@ void THD::restore_sub_statement_state(Sub_statement_state *backup)
void mark_transaction_to_rollback(THD *thd, bool all) void mark_transaction_to_rollback(THD *thd, bool all)
{ {
thd->is_fatal_sub_stmt_error= TRUE; if (thd)
thd->transaction_rollback_request= all; {
thd->is_fatal_sub_stmt_error= TRUE;
thd->transaction_rollback_request= all;
}
} }
/*************************************************************************** /***************************************************************************
Handling of XA id cacheing Handling of XA id cacheing
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment