~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_show.cc

  • Committer: Monty Taylor
  • Date: 2008-10-06 01:30:47 UTC
  • Revision ID: monty@inaugust.com-20081006013047-6m2ejc0c4peye2k9
Removed my_free(). It turns out that it had been def'd to ignore the flags passed to it in the second arg anyway. Gotta love that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4660
4660
 
4661
4661
  return(0);
4662
4662
err:
4663
 
  my_free(schema_table, MYF(0));
 
4663
  free(schema_table);
4664
4664
  return(1);
4665
4665
}
4666
4666
 
4669
4669
  ST_SCHEMA_TABLE *schema_table= (ST_SCHEMA_TABLE *)plugin->data;
4670
4670
 
4671
4671
  if (schema_table && plugin->plugin->deinit)
4672
 
    my_free(schema_table, MYF(0));
 
4672
    free(schema_table);
4673
4673
 
4674
4674
  return(0);
4675
4675
}