~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_close.c

  • Committer: Monty Taylor
  • Date: 2008-09-14 22:10:23 UTC
  • mto: This revision was merged to the branch mainline in revision 388.
  • Revision ID: monty@inaugust.com-20080914221023-otz8vuui590zp5yf
Got rid of libsqlcommon and some surious defines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    heap_open_list=list_delete(heap_open_list,&info->open_list);
39
39
  if (!--info->s->open_count && info->s->delete_on_close)
40
40
    hp_free(info->s);                           /* Table was deleted */
41
 
  free((unsigned char*) info);
 
41
  my_free((uchar*) info,MYF(0));
42
42
  return(error);
43
43
}