From: Date: March 16 2005 1:48pm Subject: bk commit into 4.1 tree (lars:1.2125) BUG#9123 List-Archive: http://lists.mysql.com/internals/23086 X-Bug: 9123 Message-Id: <200503161248.j2GCmeM3018745@localhost.localdomain> Below is the list of changes that have just been committed into a local 4.1 repository of lars. When lars 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.2125 05/03/16 13:48:34 lars@stripped +1 -0 BUG#9123: Updates after Mats review client/mysqldump.c 1.182 05/03/16 13:48:28 lars@stripped +2 -2 BUG#9123: Updates after Mats review # 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: lars # Host: goldfish.(none) # Root: /home/bk/b9123-4.1 --- 1.181/client/mysqldump.c Wed Mar 16 08:14:01 2005 +++ 1.182/client/mysqldump.c Wed Mar 16 13:48:28 2005 @@ -2107,10 +2107,10 @@ { MYSQL_RES *tableRes; MYSQL_ROW row; - char query[ NAME_LEN + 50 ]; + char query[2*NAME_LEN+50]; + char show_name_buff[FN_REFLEN]; DBUG_ENTER("get_actual_table_name"); - char show_name_buff[FN_REFLEN]; sprintf(query, "SHOW TABLES LIKE %s", quote_for_like(old_table_name, show_name_buff)); if (mysql_query_with_error_report(sock, 0, query))