~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_open.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:
517
517
    mi_report_error(save_errno, name);
518
518
  switch (errpos) {
519
519
  case 6:
520
 
    my_free((uchar*) m_info,MYF(0));
 
520
    free((uchar*) m_info);
521
521
    /* fall through */
522
522
  case 5:
523
523
    my_close(info.dfile,MYF(0));
525
525
      break;                                    /* Don't remove open table */
526
526
    /* fall through */
527
527
  case 4:
528
 
    my_free((uchar*) share,MYF(0));
 
528
    free((uchar*) share);
529
529
    /* fall through */
530
530
  case 3:
531
531
    /* fall through */