~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/list.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:
59
59
  {
60
60
    next=root->next;
61
61
    if (free_data)
62
 
      my_free((uchar*) root->data,MYF(0));
63
 
    my_free((uchar*) root,MYF(0));
 
62
      free((uchar*) root->data);
 
63
    free((uchar*) root);
64
64
    root=next;
65
65
  }
66
66
}