~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_close.c

MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
    my_free((uchar*) info->s,MYF(0));
104
104
  }
105
105
  pthread_mutex_unlock(&THR_LOCK_myisam);
106
 
  if (info->ftparser_param)
107
 
  {
108
 
    my_free((uchar*)info->ftparser_param, MYF(0));
109
 
    info->ftparser_param= 0;
110
 
  }
 
106
 
111
107
  if (info->dfile >= 0 && my_close(info->dfile,MYF(0)))
112
108
    error = my_errno;
113
109