FTK changes. Fixed bug in f_combineWPChar that was resulting in an illegal memory access when processing characters beyond 0x0F00.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@780 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-08-21 20:30:14 +00:00
parent 7c37eb0d40
commit 84931997bb
2 changed files with 17 additions and 16 deletions

View File

@@ -5694,7 +5694,8 @@ FLMBOOL FLMAPI f_combineWPChar(
BASE_DIACRIT_TABLE * pTable;
ucCharSet = HI( ui16BaseChar);
if( ucCharSet > F_NCHSETS)
if( ucCharSet >= F_NCHSETS)
{
return( TRUE);
}