Commit a4a2c720 authored by joerg@trift2.'s avatar joerg@trift2.
Browse files

Merge trift2.:/MySQL/M41/tmp-4.1

into  trift2.:/MySQL/M41/push-4.1
parents 160b784a 018a5d40
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -540,7 +540,7 @@ void *create_embedded_thd(int client_flag)
  thd->set_time();
  thd->init_for_queries();
  thd->client_capabilities= client_flag;
  thd->real_id= (pthread_t) thd;
  thd->real_id= (pthread_t)thd->thread_id;

  thd->db= NULL;
  thd->db_length= 0;
+1 −1
Original line number Diff line number Diff line
@@ -2243,7 +2243,7 @@ longlong Item_func_release_lock::val_int()
  else
  {
#ifdef EMBEDDED_LIBRARY
    if (ull->locked && pthread_equal(current_thd->real_id,ull->thread))
    if (ull->locked && (current_thd->real_id == ull->thread))
#else
    if (ull->locked && pthread_equal(pthread_self(),ull->thread))
#endif