List:Commits« Previous MessageNext Message »
From:bar Date:May 18 2006 9:28am
Subject:bk commit into 5.1 tree (bar:1.2162) BUG#19392
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of bar. When bar does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2162 06/05/18 12:28:39 bar@stripped +1 -0
  sql_db.cc:
    Bug#19392: Rename Database: Crash if case change
    Additional minor fix, to avoid compiler warnings.

  sql/sql_db.cc
    1.135 06/05/18 12:26:11 bar@stripped +2 -2
    Bug#19392: Rename Database: Crash if case change
    Additional minor fix, to avoid compiler warnings.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	bar
# Host:	bar.intranet.mysql.r18.ru
# Root:	/usr/home/bar/mysql-5.1-new.19392

--- 1.134/sql/sql_db.cc	2006-05-18 12:20:37 +05:00
+++ 1.135/sql/sql_db.cc	2006-05-18 12:26:11 +05:00
@@ -134,8 +134,8 @@ void lock_db_delete(const char *name, ui
 {
   my_dblock_t *opt;
   safe_mutex_assert_owner(&LOCK_lock_db);
-  if (opt= (my_dblock_t *)hash_search(&lock_db_cache,
-                                      (const byte*) name, length))
+  if ((opt= (my_dblock_t *)hash_search(&lock_db_cache,
+                                       (const byte*) name, length)))
     hash_delete(&lock_db_cache, (byte*) opt);
 }
 
Thread
bk commit into 5.1 tree (bar:1.2162) BUG#19392bar18 May