List:Internals« Previous MessageNext Message »
From:holyfoot Date:May 9 2005 11:16pm
Subject:bk commit into 4.1 tree (holyfoot:1.2260) BUG#10493
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of hf. When hf 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.2260 05/05/10 02:15:59 holyfoot@hf-ibm.(none) +2 -0
  Fix for bug #10493 (SJIS fields are not correctly saved)

  BitKeeper/etc/logging_ok
    1.390 05/05/10 02:15:59 holyfoot@stripped +1 -0
    Logging to logging@stripped accepted

  strings/ctype-sjis.c
    1.77 05/05/10 02:15:24 holyfoot@stripped +1 -1
    pos should be decreased

# 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:	holyfoot
# Host:	hf-ibm.(none)
# Root:	/home/hf/work/mysql-4.1.ssj

--- 1.76/strings/ctype-sjis.c	Wed Apr  6 11:53:09 2005
+++ 1.77/strings/ctype-sjis.c	Tue May 10 02:15:24 2005
@@ -4576,7 +4576,7 @@
 {
   const char *b0= b;
   *error= 0;
-  while (pos && b < e)
+  while (pos-- && b < e)
   {
     if ((uchar) b[0] < 128)
     {

--- 1.389/BitKeeper/etc/logging_ok	Sun May  8 22:16:13 2005
+++ 1.390/BitKeeper/etc/logging_ok	Tue May 10 02:15:59 2005
@@ -75,6 +75,7 @@
 hf@deer.(none)
 hf@stripped
 hf@genie.(none)
+holyfoot@stripped
 igor@stripped
 igor@stripped
 igor@stripped
Thread
bk commit into 4.1 tree (holyfoot:1.2260) BUG#10493holyfoot9 May