~ubuntu-branches/ubuntu/saucy/mysql-5.5/saucy-security

« back to all changes in this revision

Viewing changes to sql/sql_manager.cc

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-10-22 15:14:10 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20131022151410-5xj09x9slxhqa0fx
Tags: 5.5.34-0ubuntu0.13.10.1
* SECURITY UPDATE: Update to 5.5.34 to fix security issues (LP: #1243253)
  - http://www.oracle.com/technetwork/topics/security/cpuoct2013-1899837.html
  - CVE-2013-3839
  - CVE-2013-5807

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
  if (flush_time && flush_time != ~(ulong) 0L)
137
137
  {
138
138
    pthread_t hThread;
139
 
    if (mysql_thread_create(key_thread_handle_manager,
140
 
                            &hThread, &connection_attrib, handle_manager, 0))
141
 
      sql_print_warning("Can't create handle_manager thread");
 
139
    int error;
 
140
    if ((error= mysql_thread_create(key_thread_handle_manager,
 
141
                                    &hThread, &connection_attrib,
 
142
                                    handle_manager, 0)))
 
143
      sql_print_warning("Can't create handle_manager thread (errno= %d)",
 
144
                        error);
142
145
  }
143
146
  DBUG_VOID_RETURN;
144
147
}