~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Monty Taylor
  • Date: 2008-09-23 14:19:48 UTC
  • mto: This revision was merged to the branch mainline in revision 419.
  • Revision ID: monty@inaugust.com-20080923141948-ktph2kg13addaxq1
Actually removed VOID() this time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2594
2594
  }
2595
2595
err:
2596
2596
  if (file >= 0)
2597
 
    VOID(my_close(file,MYF(MY_WME)));
 
2597
    my_close(file,MYF(MY_WME));
2598
2598
  return(result);
2599
2599
}
2600
2600
 
3103
3103
  name= check_lowercase_names(table.file, share.path.str, name_buff);
3104
3104
 
3105
3105
  error= table.file->ha_create(name, &table, create_info);
3106
 
  VOID(closefrm(&table, 0));
 
3106
  closefrm(&table, 0);
3107
3107
  if (error)
3108
3108
  {
3109
3109
    strxmov(name_buff, db, ".", table_name, NullS);
3172
3172
 
3173
3173
  check_lowercase_names(table.file, path, path);
3174
3174
  error=table.file->ha_create(path, &table, &create_info);
3175
 
  VOID(closefrm(&table, 1));
 
3175
  closefrm(&table, 1);
3176
3176
 
3177
3177
  return(error != 0);
3178
3178
}