~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2010-07-30 00:19:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1679.
  • Revision ID: brian@gaz-20100730001937-fltuqso92k89ryeh
This change the style on a few TODO, and fixes an error path to correctly
unallocate a Table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2370
2370
  {
2371
2371
    /* No need to lock share->mutex as this is not needed for tmp tables */
2372
2372
    delete share;
2373
 
    free((char*) new_tmp_table);
 
2373
    delete new_tmp_table;
2374
2374
 
2375
2375
    return 0;
2376
2376
  }