Commit ce786ab0 authored by Bjorn Munch's avatar Bjorn Munch

Bug #52019 main.mysqltest fails on new tests for lowercase_result

Limited to actual bug fix, fixing a while condition
Again confirmed on Linux PPC and on AIX 5.3
parent 5c42b3c9
......@@ -5742,7 +5742,7 @@ int read_line(char *buf, int size)
{
/* It was not a multiline char, push back the characters */
/* We leave first 'c', i.e. pretend it was a normal char */
while (p > mb_start)
while (p-1 > mb_start)
my_ungetc(*--p);
}
}
......
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