diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2010-10-20 11:22:08 +0200 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2010-10-20 11:22:08 +0200 |
commit | ce786ab04db34b58dc894e4390a9d56ef6dfc605 (patch) | |
tree | a3dc251e6d1581b27888336ea7b10efa036c4d2a /client/mysqltest.cc | |
parent | 5c42b3c9eda432545a417c20929e3707a740ae29 (diff) | |
download | mariadb-git-ce786ab04db34b58dc894e4390a9d56ef6dfc605.tar.gz |
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
Diffstat (limited to 'client/mysqltest.cc')
-rw-r--r-- | client/mysqltest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqltest.cc b/client/mysqltest.cc index 53c1f1bdf85..ee03b796873 100644 --- a/client/mysqltest.cc +++ b/client/mysqltest.cc @@ -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); } } |