~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • 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:
585
585
    recinfo must be freed.
586
586
  */
587
587
  if (recinfo)
588
 
    my_free((uchar*) recinfo, MYF(0));
 
588
    free((uchar*) recinfo);
589
589
  return my_errno;
590
590
}
591
591
 
1656
1656
                   records, recinfo,
1657
1657
                   0, (MI_UNIQUEDEF*) 0,
1658
1658
                   &create_info, create_flags);
1659
 
  my_free((uchar*) recinfo, MYF(0));
 
1659
  free((uchar*) recinfo);
1660
1660
  return(error);
1661
1661
}
1662
1662