Commit 1230daf8 authored by unknown's avatar unknown
Browse files

memory leak fixed

parent 9a63c8e0
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -222,10 +222,12 @@ static int mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *unit,
      table->next= thd->derived_tables;
      thd->derived_tables= table;
    }
  }
  else
    free_tmp_table(thd, table);

exit:
  delete derived_result;
  lex->current_select= save_current_select;
  }
  DBUG_RETURN(res);
}