~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.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:
1667
1667
 
1668
1668
      if (!(create_info->options & HA_LEX_CREATE_TMP_TABLE))
1669
1669
      {
1670
 
        VOID(pthread_mutex_lock(&LOCK_open));
 
1670
        pthread_mutex_lock(&LOCK_open);
1671
1671
        if (reopen_name_locked_table(thd, create_table, false))
1672
1672
        {
1673
1673
          quick_rm_table(create_info->db_type, create_table->db,
1676
1676
        }
1677
1677
        else
1678
1678
          table= create_table->table;
1679
 
        VOID(pthread_mutex_unlock(&LOCK_open));
 
1679
        pthread_mutex_unlock(&LOCK_open);
1680
1680
      }
1681
1681
      else
1682
1682
      {