~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_check.c

  • Committer: Monty Taylor
  • Date: 2008-07-15 21:40:58 UTC
  • mfrom: (77.1.113 codestyle32)
  • mto: This revision was merged to the branch mainline in revision 176.
  • Revision ID: mordred@camelot-20080715214058-rm3phulldos9xehv
Merged from codestyle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2431
2431
  my_free(mi_get_rec_buff_ptr(info, sort_param.record),
2432
2432
          MYF(MY_ALLOW_ZERO_PTR));
2433
2433
  my_free((uchar*) sort_info.key_block,MYF(MY_ALLOW_ZERO_PTR));
2434
 
  my_free((uchar*) sort_info.ft_buf, MYF(MY_ALLOW_ZERO_PTR));
2435
2434
  my_free(sort_info.buff,MYF(MY_ALLOW_ZERO_PTR));
2436
2435
  VOID(end_io_cache(&param->read_cache));
2437
2436
  info->opt_flag&= ~(READ_CACHE_USED | WRITE_CACHE_USED);
2943
2942
  pthread_cond_destroy (&sort_info.cond);
2944
2943
  pthread_mutex_destroy(&sort_info.mutex);
2945
2944
 
2946
 
  my_free((uchar*) sort_info.ft_buf, MYF(MY_ALLOW_ZERO_PTR));
2947
2945
  my_free((uchar*) sort_info.key_block,MYF(MY_ALLOW_ZERO_PTR));
2948
2946
  my_free((uchar*) sort_param,MYF(MY_ALLOW_ZERO_PTR));
2949
2947
  my_free(sort_info.buff,MYF(MY_ALLOW_ZERO_PTR));