List:Internals« Previous MessageNext Message »
From:Jim Winstead Date:June 17 2005 7:10pm
Subject:bk commit into 4.1 tree (jimw:1.2301) BUG#10840
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of jwinstead. When jwinstead 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.2301 05/06/17 19:10:32 jimw@stripped +1 -0
  Fix handling of command-line on Windows, missed as part of earlier
  commit. (Bug #10840)

  client/mysql.cc
    1.208 05/06/17 19:09:30 jimw@stripped +1 -1
    Add cast to handle unsigned value being stored in signed char

# 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:	jimw
# Host:	production.mysql.com
# Root:	/usersnfs/jwinstead/my/mysql-4.1-10840

--- 1.207/client/mysql.cc	2005-06-09 19:44:09 +02:00
+++ 1.208/client/mysql.cc	2005-06-17 19:09:30 +02:00
@@ -989,7 +989,7 @@
         a nil, it still needs the space in the linebuffer for it. This is,
         naturally, undocumented.
        */
-      } while (linebuffer[0] <= linebuffer[1] + 1);
+      } while ((unsigned)linebuffer[0] <= (unsigned)linebuffer[1] + 1);
       line= buffer.c_ptr();
 #endif /* __NETWARE__ */
 #else
Thread
bk commit into 4.1 tree (jimw:1.2301) BUG#10840Jim Winstead17 Jun