~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/blackhole/ha_blackhole.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:
236
236
    
237
237
    if (my_hash_insert(&blackhole_open_tables, (uchar*) share))
238
238
    {
239
 
      my_free((uchar*) share, MYF(0));
 
239
      free((uchar*) share);
240
240
      share= NULL;
241
241
      goto error;
242
242
    }
261
261
static void blackhole_free_key(st_blackhole_share *share)
262
262
{
263
263
  thr_lock_delete(&share->lock);
264
 
  my_free((uchar*) share, MYF(0));
 
264
  free((uchar*) share);
265
265
}
266
266
 
267
267
static uchar* blackhole_get_key(st_blackhole_share *share, size_t *length,