Commit 94c044b6 authored by unknown's avatar unknown
Browse files

BUG#21582 mysql server crashes in close_temporary_tables

the problem is described and resolved by 20919 which fix happened not to have got to
the release tree. Applying the patch of the parent bug.


sql/sql_base.cc:
  BUG#21582 mysql server crashes in close_temporary_tables
  appeared to be a dup of 20919. Applying the patch of the latter to fix this but
  in specific mysql-5.0-release tree.
parent 7dbd43b1
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -624,8 +624,10 @@ void close_temporary_tables(THD *thd)

  if (!mysql_bin_log.is_open())
  {
    for (table= thd->temporary_tables; table; table= table->next)
    TABLE *next;
    for (table= thd->temporary_tables; table; table= next)
    {
      next= table->next;
      close_temporary(table, 1);
    }
    thd->temporary_tables= 0;