BUnicodeChar::ToUTF8() had the same regression as ::FromUTF8() as far as
not advancing the input string pointer, which broke building
case-insensitive queries.
This commit is contained in:
Rene Gollent 2013-04-11 18:03:56 -04:00
parent 07d1d01afc
commit 04b78a402d

View File

@ -245,6 +245,7 @@ BUnicodeChar::ToUTF8(uint32 c, char **out)
{
int i = 0;
U8_APPEND_UNSAFE(*out, i, c);
*out += i;
}