diff options
author | monty@mashka.mysql.fi <> | 2003-05-21 21:39:58 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-05-21 21:39:58 +0300 |
commit | 6aa8929cf37374fe74c31eb03007961fa119213a (patch) | |
tree | 3df25ac7036fb4b2e95ab56b9dc90477ec234b7c /strings | |
parent | dd2b7918cdd5e0e643cff0305542ccd4aa8f1b6b (diff) | |
download | mariadb-git-6aa8929cf37374fe74c31eb03007961fa119213a.tar.gz |
After merge fixes
Added initialization of all important global variables
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-ujis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/ctype-ujis.c b/strings/ctype-ujis.c index 92214868018..8a9863f7940 100644 --- a/strings/ctype-ujis.c +++ b/strings/ctype-ujis.c @@ -8257,7 +8257,7 @@ my_mb_wc_euc_jp(CHARSET_INFO *cs,my_wc_t *pwc, const uchar *s, const uchar *e) { int c1,c2,c3; - if (s>e) + if (s >= e) return MY_CS_TOOFEW(0); c1=s[0]; |