~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to drizzled/sql_handler.cc

  • Committer: Monty
  • Date: 2008-10-02 05:41:33 UTC
  • mfrom: (398.1.10 codestyle)
  • Revision ID: mordred@scylla.inaugust.com-20081002054133-tyxv5bmqpazfaqqi
Merged up to 408 of stdint-includes-fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
  {
94
94
    (*table_ptr)->file->ha_index_or_rnd_end();
95
95
    if (! is_locked)
96
 
      VOID(pthread_mutex_lock(&LOCK_open));
 
96
      pthread_mutex_lock(&LOCK_open);
97
97
    if (close_thread_table(thd, table_ptr))
98
98
    {
99
99
      /* Tell threads waiting for refresh that something has happened */
100
100
      broadcast_refresh();
101
101
    }
102
102
    if (! is_locked)
103
 
      VOID(pthread_mutex_unlock(&LOCK_open));
 
103
      pthread_mutex_unlock(&LOCK_open);
104
104
  }
105
105
  else if (tables->table)
106
106
  {