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

Several fixes revelaled by Intel compiler.

This commit is contained in:
jani@a193-229-222-105.elisa-laajakaista.fi
2005-09-23 16:47:08 +03:00
parent f5c00b0dbd
commit acf218b708
18 changed files with 42 additions and 38 deletions

View File

@ -473,7 +473,8 @@ static int _ftb_check_phrase(const byte *s0, const byte *e0,
for (;;)
{
n_word= (FT_WORD *)phrase_element->data;
if (my_strnncoll(cs, h_word.pos, h_word.len, n_word->pos, n_word->len))
if (my_strnncoll(cs, (const uchar *) h_word.pos, h_word.len,
(const uchar *) n_word->pos, n_word->len))
break;
if (! (phrase_element= phrase_element->next))
DBUG_RETURN(1);