~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/list.cc

  • Committer: Brian Aker
  • Date: 2008-12-09 17:33:02 UTC
  • mfrom: (656.1.54 devel)
  • Revision ID: brian@tangent.org-20081209173302-aptngvc7efxnatnt
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
 
70
70
LIST *list_cons(void *data, LIST *list)
71
71
{
72
 
  LIST * const new_charset=(LIST*) my_malloc(sizeof(LIST),MYF(MY_FAE));
 
72
  LIST * const new_charset=(LIST*) malloc(sizeof(LIST));
73
73
  if (!new_charset)
74
74
    return NULL;
75
75
  new_charset->data=data;