~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_utility.h

  • 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:
138
138
  }
139
139
 
140
140
  ~table_def() {
141
 
    my_free(m_memory, MYF(0));
 
141
    free(m_memory);
142
142
    m_type= 0;
143
143
    m_size= 0;
144
144
  }