1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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
This commit is contained in:
Bjorn Munch
2010-10-20 11:22:08 +02:00
parent 05062d579a
commit 6960db2dfd

View File

@ -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);
}
}