If the gunichar is 0xfffe, just skip processing it. Maybe this will fix
2003-03-20 Jeffrey Stedfast <fejj@ximian.com> * e-trie.c (e_trie_search): If the gunichar is 0xfffe, just skip processing it. Maybe this will fix bug #39900. (trie_utf8_getc): Removed unused labels to shutup the compiler. svn path=/trunk/; revision=20448
This commit is contained in:
committed by
Jeffrey Stedfast
parent
bca5dffbb7
commit
0179e4a206
@ -2,6 +2,7 @@
|
||||
|
||||
* e-trie.c (e_trie_search): If the gunichar is 0xfffe, just skip
|
||||
processing it. Maybe this will fix bug #39900.
|
||||
(trie_utf8_getc): Removed unused labels to shutup the compiler.
|
||||
|
||||
2003-03-19 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
|
||||
@ -68,9 +68,7 @@ trie_utf8_getc (const unsigned char **in, size_t inlen)
|
||||
if (inlen == 0)
|
||||
return 0;
|
||||
|
||||
again:
|
||||
r = *inptr++;
|
||||
loop:
|
||||
if (r < 0x80) {
|
||||
*in = inptr;
|
||||
u = r;
|
||||
|
||||
Reference in New Issue
Block a user