Fix #9659.
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:
parent
07d1d01afc
commit
04b78a402d
@ -245,6 +245,7 @@ BUnicodeChar::ToUTF8(uint32 c, char **out)
|
||||
{
|
||||
int i = 0;
|
||||
U8_APPEND_UNSAFE(*out, i, c);
|
||||
*out += i;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user