~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/array.c

  • 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:
303
303
  else
304
304
  if (array->buffer)
305
305
  {
306
 
    my_free(array->buffer,MYF(MY_WME));
 
306
    free(array->buffer);
307
307
    array->buffer=0;
308
308
    array->elements=array->max_element=0;
309
309
  }