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:
Jeffrey Stedfast
2003-03-21 00:46:26 +00:00
committed by Jeffrey Stedfast
parent bca5dffbb7
commit 0179e4a206
2 changed files with 1 additions and 2 deletions

View File

@ -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>

View File

@ -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;