~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_close.cc

  • Committer: Brian Aker
  • Date: 2010-08-13 00:46:27 UTC
  • mto: (1711.1.17 build)
  • mto: This revision was merged to the branch mainline in revision 1710.
  • Revision ID: brian@tangent.org-20100813004627-zztrtq1j1r7zsm3w
Switch to using vector.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
  heap_open_list.remove(info);
42
42
  if (!--info->getShare()->open_count && info->getShare()->delete_on_close)
43
43
    hp_free(info->getShare());                          /* Table was deleted */
44
 
  delete [] info->lastkey;
45
 
  delete [] info->recbuf;
46
44
  delete info;
47
45
  return(error);
48
46
}