~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/csv/ha_tina.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:
201
201
 
202
202
error:
203
203
  pthread_mutex_unlock(&tina_mutex);
204
 
  my_free((uchar*) share, MYF(0));
 
204
  free((uchar*) share);
205
205
 
206
206
  return NULL;
207
207
}
367
367
    hash_delete(&tina_open_tables, (uchar*) share);
368
368
    thr_lock_delete(&share->lock);
369
369
    pthread_mutex_destroy(&share->mutex);
370
 
    my_free((uchar*) share, MYF(0));
 
370
    free((uchar*) share);
371
371
  }
372
372
  pthread_mutex_unlock(&tina_mutex);
373
373
 
1316
1316
 
1317
1317
  free_root(&blobroot, MYF(0));
1318
1318
 
1319
 
  my_free((char*)buf, MYF(0));
 
1319
  free((char*)buf);
1320
1320
 
1321
1321
  if (rc == HA_ERR_END_OF_FILE)
1322
1322
  {
1504
1504
  
1505
1505
  free_root(&blobroot, MYF(0));
1506
1506
 
1507
 
  my_free((char*)buf, MYF(0));
 
1507
  free((char*)buf);
1508
1508
  thd_proc_info(thd, old_proc_info);
1509
1509
 
1510
1510
  if ((rc != HA_ERR_END_OF_FILE) || count)