Commit 9e3df6cc authored by unknown's avatar unknown

mysql.cc:

  After merge fix.


client/mysql.cc:
  After merge fix.
parent 344a892b
...@@ -1193,16 +1193,16 @@ static bool add_line(String &buffer,char *line,char *in_string, ...@@ -1193,16 +1193,16 @@ static bool add_line(String &buffer,char *line,char *in_string,
#ifdef USE_MB #ifdef USE_MB
int length; int length;
if (use_mb(charset_info) && if (use_mb(charset_info) &&
(lenght= my_ismbchar(charset_info, pos, end_of_line))) (length= my_ismbchar(charset_info, pos, end_of_line)))
{ {
if (!*ml_comment) if (!*ml_comment)
{ {
while (lenght--) while (length--)
*out++ = *pos++; *out++ = *pos++;
pos--; pos--;
} }
else else
pos+= lenght - 1; pos+= length - 1;
continue; continue;
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment