~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.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:
255
255
{                   /* free cache if used */
256
256
  if (info->cache)
257
257
  {
258
 
    my_free_lock((char*) info->cache,MYF(0));
 
258
    free((char*) info->cache);
259
259
    info->cache=0;
260
260
  }
261
261
  if (info->table)